Searched refs:depth (Results 1 – 10 of 10) sorted by relevance
| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | data_config.c | 54 static void data_config_print(const data_unset *d, int depth) { in data_config_print() argument 66 array_print_indent(depth + 1); in data_config_print() 69 depth ++; in data_config_print() 77 array_print_indent(depth); in data_config_print() 83 du->print(du, depth); in data_config_print() 95 array_print_indent(depth); in data_config_print() 96 du->print(du, depth); in data_config_print() 102 depth --; in data_config_print() 103 array_print_indent(depth); in data_config_print() 112 array_print_indent(depth); in data_config_print() [all …]
|
| H A D | array.c | 252 void array_print_indent(int depth) { in array_print_indent() argument 254 for (i = 0; i < depth; i ++) { in array_print_indent() 274 int array_print(array *a, int depth) { in array_print() argument 305 du->print(du, depth + 1); in array_print() 315 array_print_indent(depth + 1); in array_print() 321 array_print_indent(depth + 1); in array_print() 329 du->print(du, depth + 1); in array_print() 333 array_print_indent(depth + 1); in array_print() 336 array_print_indent(depth); in array_print()
|
| H A D | array.h | 27 void (*print)(const struct data_unset *p, int depth) 168 int array_print(array *a, int depth); 174 void array_print_indent(int depth);
|
| H A D | data_integer.c | 41 static void data_integer_print(const data_unset *d, int depth) { in data_integer_print() argument 43 UNUSED(depth); in data_integer_print()
|
| H A D | data_count.c | 44 static void data_count_print(const data_unset *d, int depth) { in data_count_print() argument 46 UNUSED(depth); in data_count_print()
|
| H A D | data_array.c | 43 static void data_array_print(const data_unset *d, int depth) { in data_array_print() argument 46 array_print(ds->value, depth); in data_array_print()
|
| H A D | data_fastcgi.c | 43 static void data_fastcgi_print(const data_unset *d, int depth) { in data_fastcgi_print() argument 45 UNUSED(depth); in data_fastcgi_print()
|
| H A D | data_string.c | 70 static void data_string_print(const data_unset *d, int depth) { in data_string_print() argument 73 UNUSED(depth); in data_string_print()
|
| H A D | mod_webdav.c | 1097 buffer *locktoken, const char *lockscope, const char *locktype, int depth) { in webdav_lockdiscovery() argument 1128 buffer_append_string(b, depth == 0 ? "0" : "infinity"); in webdav_lockdiscovery() 1216 int depth = -1; in URIHANDLER_FUNC() local 1231 depth = strtol(ds->value->ptr, NULL, 10); in URIHANDLER_FUNC() 1357 switch(depth) { in URIHANDLER_FUNC() 2213 if (depth != 0 && depth != -1) { in URIHANDLER_FUNC() 2229 if (hdr_if == NULL && depth == -1) { in URIHANDLER_FUNC() 2363 depth); in URIHANDLER_FUNC() 2372 …webdav_lockdiscovery(srv, con, p->tmp_buf, (const char *)lockscope, (const char *)locktype, depth); in URIHANDLER_FUNC()
|
| /mOS-networking-stack/core/src/ |
| H A D | config.c | 1046 int depth = 0; in DetectBlock() local 1074 depth++; /* Now in first parenthesis */ in DetectBlock() 1080 depth++; in DetectBlock() 1081 else if (buf[len] == '}' && --depth == 0) in DetectBlock() 1085 if (depth != 0) in DetectBlock()
|