Searched refs:first (Results 1 - 23 of 23) sorted by relevance

/httpd/modules/core/test/conf/
H A Dtest60.conf6 <Macro Bla @first @second>
7 Warning Macro Bla arg 1: @first
9 Use Foo @first 'second'
10 Use Foo 'first' @second
11 Use Foo @first @second
H A Dtest26.conf4 <Macro funny "first arg" 'second ... arg'>
5 <Directory first arg>
/httpd/modules/aaa/
H A Dmod_authn_anon.c92 anon_auth_user *first; local
104 first = conf->users;
107 conf->users->next = first;
H A Dmod_authz_core.c79 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/http/
H A Dbyterange_filter.c294 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/modules/proxy/
H A Dmod_proxy_connect.c54 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/server/
H A Dutil_script.c325 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 Dutil_filter.c327 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 Dapreq_util.c767 /* 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 Dcore.c830 /* 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/support/
H A Dapxs.in92 my ($first, $rest) = ($1,$2);
97 my $pos = index($argumentative,$first);
103 error("Incomplete option: $first (needs an argument)");
108 eval "\$opt_$first = \$rest;";
114 error("Incomplete option: $first (needs an argument)");
119 eval "push(\@opt_$first, \$rest);";
122 eval "\$opt_$first = 1";
132 error("Unknown option: $first");
270 error("Directory `$name' already exists. Remove first");
723 ** To play with this sample module first compil
[all...]
/httpd/modules/dav/main/
H A Dprops.c54 ** The first string is the xml:lang value for the property. An empty
118 ** db's version number as the very first 16-bit value. This first number
119 ** is actually stored as two single bytes: the first byte is a "major"
239 /* check liveprop providers first, so they can define core properties */
606 /* get the first property name, beginning the scan */
695 result.propstats = hdr.first;
696 result.xmlns = hdr_ns.first;
846 if (hdr_bad.first == NULL) {
862 result.propstats = hdr_good.first;
[all...]
H A Dutil.c123 /* NOTE: this function is used to init the first pointer, too, since
197 /* first thing to do is parse the URI into various components */
348 for (scan = elem->first_cdata.first; scan != NULL; scan = scan->next) {
355 for (scan = child->following_cdata.first;
379 for (scan = elem->first_cdata.first; scan != NULL; scan = scan->next) {
386 for (scan = child->following_cdata.first;
503 /* Use the first thing we understand, or infinity if
591 * occurs first. Leading whitespace is ignored.
937 ** Strictly speaking, we don't need this loop. Either the first
1345 ** bad Lock-Token first
[all...]
H A Dmod_dav.c449 * 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/test/
H A Dtime-sem.c509 struct timeval first; local
561 gettimeofday (&first, NULL);
578 last.tv_sec -= first.tv_sec;
579 ms = last.tv_usec - first.tv_usec;
H A Dmake_sni.sh224 # This first entry is also the default for non SNI
390 Note that in the generated example the 'first' domain is special - and is the
/httpd/modules/core/
H A Dmod_macro.c151 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/cache/
H A Dcache_util.c366 * 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/server/mpm/event/
H A Devent.c20 * 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...]
/httpd/modules/generators/
H A Dmod_cgi.c232 int first; local
282 first = 1;
294 if (first) {
296 first = 0;
518 /* Everything is - 1 to account for the first parameter
H A Dmod_cgid.c225 * 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 Dssl_engine_config.c1190 int first = TRUE; local
1200 else if (first) {
1202 first = FALSE;
/httpd/modules/dav/fs/
H A Drepos.c533 /* try simple rename first */
1325 /* try rename first */
1527 /* for this first pass of files, all resources exist */
2052 cdata = elem->first_cdata.first;
2057 : elem->first_child->following_cdata.first;

Completed in 110 milliseconds