expcov report - Generated Sat Oct 15 21:39:18 2016

 Index  Statistics  Last 
Directory./server
Filenameutil_cfgtree.c
ModifiedWed Jul 12 12:38:44 2006

Pass Half Fail Excluded Total
Function
0
0.00%
1
100.00%
0
0.00%
1
100%
Expressions
0
0.00%
16
100.00%
0
0.00%
16
100%
Conditions
0
0.00%
0
0.00%
2
100.00%
0
0.00%
2
100%
MC/DC
0
0.00%
0
0.00%
0
0.00%
0
100%
Branches

if
0
0.00%
0
0.00%
4
100.00%
0
0.00%
4
100%
for
0
0.00%
0
0.00%
0
0.00%
0
0.00%
0
100%
while
0
0.00%
0
0.00%
0
0.00%
0
0.00%
0
100%
case
0
0.00%
0
0.00%
0
0.00%
0
0.00%
0
100%

1/* Licensed to the Apache Software Foundation (ASF) under one or more
2 * contributor license agreements.  See the NOTICE file distributed with
3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
6 * the License.  You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define CORE_PRIVATE
18#include "util_cfgtree.h"
19#include <stdlib.h>
20
21ap_directive_t *ap_add_node : call=0
a
p_add_node(ap_directive_t **parent, ap_directive_t *current,
22                            ap_directive_t *toadd, int child)
23{
24    if : true=0, false=0
i
f (current : server/util_cfgtree.c line=21 column=70
c
urrent == : true=0, false=0
=
= NULL) {
25        /* we just started a new parent */
26        if : true=0, false=0
i
f (* dereference : enter=0, leave=0
*
parent : server/util_cfgtree.c line=21 column=46
p
arent != : true=0, false=0
!
= NULL) {
27            (* dereference : enter=0, leave=0
*
parent : server/util_cfgtree.c line=21 column=46
p
arent)-> : enter=0, leave=0
-
>first_child : include/util_cfgtree.h line=57 column=28 first_child = : enter=0, leave=0
=
 toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
28            toadd : server/util_cfgtree.c line=22 column=45
t
oadd-> : enter=0, leave=0
-
>parent : include/util_cfgtree.h line=60 column=28 parent = : enter=0, leave=0
=
 * dereference : enter=0, leave=0
*
parent : server/util_cfgtree.c line=21 column=46
p
arent;
29        }
30        if : true=0, false=0
i
f (child : server/util_cfgtree.c line=22 column=56
c
hild) {
31            /* First item in config file or container is a container */
32            *parent : server/util_cfgtree.c line=21 column=46
p
arent = : enter=0, leave=0
=
 toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
33            return : pass=0
r
eturn NULL;
34        }
35        return : pass=0
r
eturn toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
36    }
37    current : server/util_cfgtree.c line=21 column=70
c
urrent-> : enter=0, leave=0
-
>next : include/util_cfgtree.h line=54 column=28 next = : enter=0, leave=0
=
 toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
38    toadd : server/util_cfgtree.c line=22 column=45
t
oadd-> : enter=0, leave=0
-
>parent : include/util_cfgtree.h line=60 column=28 parent = : enter=0, leave=0
=
 * dereference : enter=0, leave=0
*
parent : server/util_cfgtree.c line=21 column=46
p
arent;
39    if : true=0, false=0
i
f (child : server/util_cfgtree.c line=22 column=56
c
hild) {
40        /* switch parents, navigate into child */
41        *parent : server/util_cfgtree.c line=21 column=46
p
arent = : enter=0, leave=0
=
 toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
42        return : pass=0
r
eturn NULL;
43    }
44    return : pass=0
r
eturn toadd : server/util_cfgtree.c line=22 column=45
t
oadd;
45}
46
47
48[EOF]


Generated by expcov