Searched defs:prev (Results 1 - 11 of 11) sorted by relevance

/httpd/include/
H A Dapreq_parser.h275 apreq_hook_t *prev; member in struct:apreq_hook_find_param_ctx_t
284 * attribute set to NULL, and the prev attribute set to
290 * invoked, so add it manually with ctx->prev = &parser->hook
H A Dhttpd.h800 request_rec *prev; member in struct:request_rec
/httpd/modules/dav/main/
H A Dutil_lock.c596 dav_lock *prev; local
642 for (scan = locks, prev = NULL;
644 prev = scan, scan = scan->next) {
649 if (prev == NULL)
652 prev->next = scan->next;
H A Dutil.c68 dav_error *prev)
75 err->prev = prev;
95 while (curr->prev != NULL) {
96 curr = curr->prev;
100 curr->prev = src;
66 dav_push_error(apr_pool_t *p, int status, int error_id, const char *desc, dav_error *prev) argument
H A Dmod_dav.h131 struct dav_error *prev; /* previous error (in stack) */ member in struct:dav_error
163 ** caller should pass prev->status.
169 const char *desc, dav_error *prev);
/httpd/server/
H A Dutil_filter.c581 if (next->r->prev) {
582 request_rec *prev = next->r->prev; local
584 while (prev) {
585 prev->eos_sent = 1;
586 prev = prev->prev;
H A Dmpm_unix.c89 extra_process_t *prev = NULL; local
92 prev = cur;
97 if (prev) {
98 prev->next = cur->next;
H A Drequest.c221 if (r->prev && (r->prev->per_dir_config == r->per_dir_config)) {
222 r->user = r->prev->user;
223 r->ap_auth_type = r->prev->ap_auth_type;
344 struct walk_cache_t *prev; /* Prev cache of same call in this (sub)req */ member in struct:walk_cache_t
345 int count; /* Number of prev invocations of same call in this (sub)req */
368 if ((r->prev
369 && (inherit_note = ap_get_request_note(r->prev, t))
377 inherit_cache = inherit_cache->prev;
387 cache->prev
[all...]
/httpd/modules/aaa/
H A Dmod_authz_core.c591 authz_section_conf *prev = NULL; local
607 if (prev) {
608 prev->next = child;
622 prev = child;
H A Dmod_auth_digest.c733 client_entry *entry, *prev = NULL; local
744 prev = entry;
748 if (entry && prev) { /* move entry to front of list */
749 prev->next = entry->next;
775 client_entry *entry, *prev; local
782 prev = NULL;
784 prev = entry;
787 if (prev) {
788 prev->next = NULL; /* cut list */
1240 while (mainreq->prev !
[all...]
/httpd/modules/filters/
H A Dmod_proxy_html.c782 urlmap *prev = NULL; local
817 if (prev != NULL)
818 prev->next = newp;
821 prev = newp;
824 if (prev)
825 prev->next = NULL;

Completed in 133 milliseconds