/httpd/include/ |
H A D | ap_listen.h | 49 * The next listener in the list 51 ap_listen_rec *next; member in struct:ap_listen_rec
|
H A D | util_cfgtree.h | 52 /** The next directive node in the tree */ 53 struct ap_directive_t *next; member in struct:ap_directive_t
|
H A D | apreq_parser.h | 85 apreq_hook_t *next; /**< next item in the linked list */ member in struct:apreq_hook_t 211 * @param next List of other hooks for this hook to call on. 217 apreq_hook_t *next,
|
H A D | mod_auth.h | 101 authn_provider_list *next; member in struct:authn_provider_list
|
H A D | util_filter.h | 81 * filter), operates on it, and passes the result to the next filter in the 207 * At the moment, these are simply linked in a chain, so a ->next pointer 232 /** The next filter_rec in the list */ 233 struct ap_filter_rec_t *next; member in struct:ap_filter_rec_t 268 /** The next filter in the chain */ 269 ap_filter_t *next; member in struct:ap_filter_t 284 * Get the current bucket brigade from the next filter on the filter 288 * @param filter The next filter in the chain 294 * @param readbytes How many bytes to read from the next filter. 303 * Pass the current bucket brigade down to the next filte [all...] |
H A D | util_ldap.h | 128 struct util_ldap_connection_t *next; member in struct:util_ldap_connection_t
|
/httpd/modules/generators/ |
H A D | mod_cgi.h | 43 ap_filter_t *next; member in struct:__anon182
|
/httpd/modules/http/ |
H A D | http_etag.c | 34 static char *etag_uint64_to_hex(char *next, apr_uint64_t u) argument 42 *next++ = HEX_DIGITS[next_digit]; 46 *next++ = HEX_DIGITS[next_digit]; 50 *next++ = HEX_DIGITS[u & (apr_uint64_t)0xf]; 51 return next; 68 char *next; local 118 next = etag; 121 *next++ = *weak++; 124 *next++ = '"'; 127 next [all...] |
H A D | http_request.c | 72 f = f->next; 87 ap_filter_t *next; local 95 next = r->output_filters; 96 while (next && (next->frec != ap_http_header_filter_handle)) { 97 next = next->next; 101 * If next != NULL then we left the while above because of 102 * next 629 ap_filter_t *next; local [all...] |
/httpd/server/mpm/simple/ |
H A D | simple_run.c | 76 for (lr = ap_listeners; lr != NULL; lr = lr->next) { 199 simple_timer_t *next = APR_RING_PREV(ep, link); local 205 ep = next;
|
/httpd/modules/aaa/ |
H A D | mod_authn_anon.c | 61 struct anon_auth_user *next; member in struct:anon_auth_user 107 conf->users->next = first; 165 p = p->next;
|
/httpd/server/mpm/worker/ |
H A D | fdqueue.c | 22 struct recycled_pool *next; member in struct:recycled_pool 46 if (apr_atomic_casptr((void*)&(qi->recycled_pools), first_pool->next, 96 /* Save queue_info->recycled_pool in local variable next because 97 * new_recycle->next can be changed after apr_atomic_casptr 100 struct recycled_pool *next = queue_info->recycled_pools; local 101 new_recycle->next = next; 103 new_recycle, next) == next) { 191 * it reaches into the queue and accesses "next" whic [all...] |
/httpd/modules/cache/ |
H A D | mod_cache.h | 84 cache_object_t *next; member in struct:cache_object
|
H A D | cache_util.h | 206 cache_provider_list *next; member in struct:cache_provider_list
|
/httpd/modules/ldap/ |
H A D | util_ldap_cache.h | 38 struct util_cache_node_t *next; member in struct:util_cache_node_t
|
/httpd/modules/proxy/ |
H A D | ajp_msg.c | 119 char *buf, *next; local 131 while ((next = ap_strchr(buf, '\n'))) { 132 *next = '\0'; 134 buf = next + 1;
|
/httpd/modules/slotmem/ |
H A D | mod_slotmem_plain.c | 33 struct ap_slotmem_instance_t *next; /* location of next allocated segment */ member in struct:ap_slotmem_instance_t 69 ap_slotmem_instance_t *next = globallistmem; local 81 if (next) { 83 if (strcmp(next->name, fname) == 0) { 85 *new = next; 88 if (!next->next) { 91 next = next 122 ap_slotmem_instance_t *next = globallistmem; local [all...] |
/httpd/server/ |
H A D | apreq_parser.c | 57 apreq_hook_t *next, 62 h->next = next; 75 while (last->next) 76 last = last->next; 78 last->next = p->hook; 198 if (hook->next) 199 s = apreq_hook_run(hook->next, param, bb); 308 if (hook->next) 309 s = apreq_hook_run(hook->next, para 55 apreq_hook_make(apr_pool_t *pool, apreq_hook_function_t hook, apreq_hook_t *next, void *ctx) argument [all...] |
H A D | core_filters.c | 252 * that the next call returns an EOS bucket. 377 apr_bucket *bucket, *next, *flush_upto = NULL; local 489 bucket = next) { 490 next = APR_BUCKET_NEXT(bucket); 540 flush_upto = next; 654 apr_bucket *bucket, *next; local 663 bucket = next) { 664 next = APR_BUCKET_NEXT(bucket); 721 /* reading may have split the bucket, so recompute next: */ 722 next [all...] |
/httpd/server/mpm/event/ |
H A D | fdqueue.c | 25 struct recycled_pool *next; member in struct:recycled_pool 57 ((void*) &(qi->recycled_pools), first_pool->next, 237 * Save queue_info->recycled_pool in local variable next because 238 * new_recycle->next can be changed after apr_atomic_casptr 241 struct recycled_pool *next = queue_info->recycled_pools; local 242 new_recycle->next = next; 244 new_recycle, next) == next) 254 * it reaches into the queue and accesses "next" whic [all...] |
/httpd/modules/core/ |
H A D | mod_watchdog.c | 35 struct watchdog_list_t *next; member in struct:watchdog_list_t 87 wl = wl->next; 168 wl = wl->next; 213 wl = wl->next; 250 wl = wl->next; 350 c = c->next; 370 c = c->next; 380 c->next = w->callbacks;
|
/httpd/modules/filters/ |
H A D | sed0.c | 186 sed_reptr_t *next; local 188 next = rep->lb1; 190 rep = next; 1019 commands->ptrend->next = var;
|
H A D | libsed.h | 40 sed_reptr_t *next; member in struct:sed_reptr_s
|
/httpd/modules/database/ |
H A D | mod_dbd.c | 58 dbd_group_t *next; member in struct:dbd_group_t 348 for (sp = s; sp; sp = sp->next) { 363 for (group = group_list; group; group = group->next) { 426 group->next = group_list; 667 for (group = group_list; group; group = group->next) {
|
/httpd/modules/dav/lock/ |
H A D | locks.c | 119 struct dav_lock_discovery *next; member in struct:dav_lock_discovery 132 struct dav_lock_indirect *next; member in struct:dav_lock_indirect 470 dp = dp->next; 474 ip = ip->next; 505 dp = dp->next; 524 ip = ip->next; 627 dp->next = *direct; 650 ip->next = *indirect; 711 for (; dir != NULL; dir = dir->next) { 813 for (; dp != NULL; dp = dp->next) { [all...] |