/httpd/modules/aaa/ |
H A D | mod_authn_anon.c | 92 anon_auth_user *first; local 104 first = conf->users; 107 conf->users->next = first;
|
H A D | mod_authz_core.c | 79 authz_section_conf *first; member in struct:authz_section_conf 144 section->first = apr_pmemdup(p, base->section, 146 section->first->next = apr_pmemdup(p, new->section, 338 /* Register the fake provider so that we get called first */ 448 child = conf->section->first; 458 conf->section->first = section; 522 if (section->first) { 540 section = section->first; 543 child = old_section->first; 553 old_section->first [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy_connect.c | 54 int first; member in struct:__anon289 86 int first, last; local 96 first = strtol(p, &endptr, 10); 102 last = first; 111 New->first = first; 128 if (port >= list[i].first && port <= list[i].last) 290 * list so that the "best candidate" is first try. "best
|
/httpd/test/ |
H A D | time-sem.c | 509 struct timeval first; local 561 gettimeofday (&first, NULL); 578 last.tv_sec -= first.tv_sec; 579 ms = last.tv_usec - first.tv_usec;
|
/httpd/modules/http/ |
H A D | byterange_filter.c | 294 apr_bucket *first = NULL, *last = NULL, *out_first = NULL, *e; local 319 if (!first && (elen64 + pos > start64)) { 320 first = e; 330 if (!first || !last) 333 e = first; 345 if (e == first) { 360 if (e == first) {
|
/httpd/server/ |
H A D | apreq_util.c | 767 /* we're still in the first iovec - check for endless loop, 875 /* Must ensure first char isn't '=', so we can safely backstep. */ 1119 apr_bucket *e, *first; local 1142 while ((first = APR_BRIGADE_FIRST(tmp)) != e) 1143 apr_bucket_delete(first); 1164 while ((first = APR_BRIGADE_FIRST(tmp)) != e) 1165 apr_bucket_delete(first);
|
H A D | util_filter.c | 327 ap_filter_t *first = NULL; local 330 /* If we are adding our first non-connection filter, 332 * automatically first. 335 first = *r_filters; 336 while (first && (first->next != (*outf))) { 337 first = first->next; 341 if (first && first ! [all...] |
H A D | util_script.c | 325 char *first, *last; local 331 first = r->the_request; /* use the request-line */ 333 while (*first && !apr_isspace(*first)) { 334 ++first; /* skip over the method */ 336 while (apr_isspace(*first)) { 337 ++first; /* and the space(s) */ 340 last = first; 345 return apr_pstrmemdup(r->pool, first, last - first); [all...] |
H A D | core.c | 830 /* check for string registered via ap_custom_response() first */ 1626 int first = 1; local 1633 if (first) { 1636 first = 0; 1822 int first = 1; local 1833 if (!merge && !first && !all_none) { 1838 else if (first) { 1870 if (!first) { 1871 return "'Options None' must be the first Option given."; 1880 if (!first) { 1943 int first; local [all...] |
/httpd/modules/cache/ |
H A D | cache_util.c | 366 * lock name first before trying to delete the file. 719 * a significant number of stale requests through before the first 725 * We want the first stale request to go through as normal. But the 727 * the first request comes back with either new content or confirmation 732 * exclusive write access. If we succeed, woohoo! we're first, and we 1297 const char *first; member in struct:__anon81 1305 if (!state->first) { 1312 state->first = val; 1319 *elt = state->first; 1333 state.first [all...] |
/httpd/modules/core/ |
H A D | mod_macro.c | 151 char *first, **new; local 155 first = ap_getword_conf_nc(pool, &ptr); 156 if (first) { 158 if (!strncmp(first, "</", 2)) { 168 else if (!strncmp(first, "<", 1)) { 172 if (!strcasecmp(first, end_token)) { 197 else if (begin_token && !strcasecmp(first, begin_token)) { 235 generates a warning if the first char of an argument is not in ARG_PREFIX 384 find first occurence of args in buf.
|
/httpd/modules/generators/ |
H A D | mod_cgi.c | 232 int first; local 282 first = 1; 294 if (first) { 296 first = 0; 518 /* Everything is - 1 to account for the first parameter
|
H A D | mod_cgid.c | 225 * group are the first three arguments to be passed; if not, all three 850 * of the key the first time a thread has a cgid request. 853 * first time; new key storage isn't needed for replacing the 1112 int first; local 1164 first = 1; 1177 if (first) { 1179 first = 0;
|
/httpd/modules/ssl/ |
H A D | ssl_engine_config.c | 1190 int first = TRUE; local 1200 else if (first) { 1202 first = FALSE;
|
/httpd/modules/dav/main/ |
H A D | mod_dav.c | 449 * default to 500 Internal Server Error if first->status 526 dav_response *first, 537 for (; first != NULL; first = first->next) { 539 dav_send_one_response(first, bb, r->output_filters, subpool); 556 /* ### should have a directive to log the first or all */ 1658 for (t = hoptions.first; t && t->text; t = t->next) 1678 for (t = vsn_options.first; t != NULL; t = t->next) 1818 for (t = hoptions.first; 525 dav_send_multistatus(request_rec *r, int status, dav_response *first, apr_array_header_t *namespaces) argument [all...] |
/httpd/server/mpm/event/ |
H A D | event.c | 20 * After a client completes the first request, the client can keep the 114 * We keep a hard maximum number of servers, for two reasons --- first off, 350 * allocated on first call to pre-config hook; located on 489 * listener_os_thread is set, the first worker thread hits an 700 * ap_start_shutdown() and ap_start_restart(), below, are a first stab at 912 * Close our side of the connection, flushing data to the client first. 1027 * the keepalive timeout from the base server (first on this IP:port) 1098 * socket is readable due to the first data packet arriving, 1420 * XXX: close all keep-alive connections first. 1671 event_conn_state_t *first, *c local [all...] |