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

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

Pass Half Fail Excluded Total
Function
0
0.00%
3
100.00%
0
0.00%
3
100%
Expressions
0
0.00%
13
100.00%
0
0.00%
13
100%
Conditions
0
0.00%
0
0.00%
0
0.00%
0
0.00%
0
100%
MC/DC
0
0.00%
0
0.00%
0
0.00%
0
100%
Branches

if
0
0.00%
0
0.00%
0
0.00%
0
0.00%
0
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#include "httpd.h"
18#include "http_connection.h"
19
20static apr_status_t eoc_bucket_read : call=0
e
oc_bucket_read(apr_bucket *b, const char **str,
21                                    apr_size_t *len, apr_read_type_e block)
22{
23    *str : server/eoc_bucket.c line=20 column=65
s
tr = : enter=0, leave=0
=
 NULL;
24    *len : server/eoc_bucket.c line=21 column=49
l
en = : enter=0, leave=0
=
 0;
25    return : pass=0
r
eturn APR_SUCCESS;
26}
27
28AP_DECLARE(apr_bucket *) ap_bucket_eoc_make : call=0
a
p_bucket_eoc_make(apr_bucket *b)
29{
30    b : server/eoc_bucket.c line=28 column=57
b
-> : enter=0, leave=0
-
>length : /usr/include/apr-1/apr_buckets.h line=234 column=16 length      = : enter=0, leave=0
=
 0;
31    b : server/eoc_bucket.c line=28 column=57
b
-> : enter=0, leave=0
-
>start : /usr/include/apr-1/apr_buckets.h line=242 column=15 start       = : enter=0, leave=0
=
 0;
32    b : server/eoc_bucket.c line=28 column=57
b
-> : enter=0, leave=0
-
>data : /usr/include/apr-1/apr_buckets.h line=244 column=11 data        = : enter=0, leave=0
=
 NULL;
33    b : server/eoc_bucket.c line=28 column=57
b
-> : enter=0, leave=0
-
>type : /usr/include/apr-1/apr_buckets.h line=228 column=30 type        = : enter=0, leave=0
=
 &ap_bucket_type_eoc : include/http_connection.h line=121 column=48
a
p_bucket_type_eoc;
34
35    return : pass=0
r
eturn b : server/eoc_bucket.c line=28 column=57
b
;
36}
37
38AP_DECLARE(apr_bucket *) ap_bucket_eoc_create : call=0
a
p_bucket_eoc_create(apr_bucket_alloc_t *list)
39{
40    apr_bucket *b = apr_bucket_alloc : enter=0, leave=0

apr_bucket_alloc : /usr/include/apr-1/apr_buckets.h line=953 column=28
a
pr_bucket_alloc(sizeof(*b), list : server/eoc_bucket.c line=38 column=67
l
ist);
41
42    APR_BUCKET_INIT(b : server/eoc_bucket.c line=40 column=17
b
);
43    b : server/eoc_bucket.c line=40 column=17
b
-> : enter=0, leave=0
-
>free : /usr/include/apr-1/apr_buckets.h line=252 column=12 free = : enter=0, leave=0
=
 apr_bucket_free : /usr/include/apr-1/apr_buckets.h line=959 column=26 apr_bucket_free;
44    b : server/eoc_bucket.c line=40 column=17
b
-> : enter=0, leave=0
-
>list : /usr/include/apr-1/apr_buckets.h line=254 column=25 list = : enter=0, leave=0
=
 list : server/eoc_bucket.c line=38 column=67
l
ist;
45    return : pass=0
r
eturn ap_bucket_eoc_make : enter=0, leave=0

ap_bucket_eoc_make : server/eoc_bucket.c line=28 column=26
a
p_bucket_eoc_make(b : server/eoc_bucket.c line=40 column=17
b
);
46}
47
48AP_DECLARE_DATA const apr_bucket_type_t ap_bucket_type_eoc = {
49    "EOC", 5, APR_BUCKET_METADATA : /usr/include/apr-1/apr_buckets.h line=155 column=9 APR_BUCKET_METADATA,
50    apr_bucket_destroy_noop : /usr/include/apr-1/apr_buckets.h line=1088 column=26 apr_bucket_destroy_noop,
51    eoc_bucket_read : server/eoc_bucket.c line=20 column=21
e
oc_bucket_read,
52    apr_bucket_setaside_noop : /usr/include/apr-1/apr_buckets.h line=1046 column=34 apr_bucket_setaside_noop,
53    apr_bucket_split_notimpl : /usr/include/apr-1/apr_buckets.h line=1066 column=34 apr_bucket_split_notimpl,
54    apr_bucket_simple_copy : /usr/include/apr-1/apr_buckets.h line=1181 column=34 apr_bucket_simple_copy
55};
56[EOF]


Generated by expcov