Searched defs:where (Results 1 - 7 of 7) sorted by relevance

/httpd/modules/aaa/
H A Dmod_access_compat.c148 char *where = apr_pstrdup(cmd->pool, where_c); local
156 a->x.from = where;
159 if (!strncasecmp(where, "env=!", 5)) {
164 else if (!strncasecmp(where, "env=", 4)) {
169 else if (!strcasecmp(where, "all")) {
172 else if ((s = ap_strchr(where, '/'))) {
174 rv = apr_ipsubnet_create(&a->x.ip, where, s, cmd->pool);
184 else if (!APR_STATUS_IS_EINVAL(rv = apr_ipsubnet_create(&a->x.ip, where,
190 else if (ap_strchr(where, '#')) {
/httpd/modules/examples/
H A Dmod_example_hooks.c148 * AP_INIT_NO_ARGS("directive", function, mconfig, where, help)
157 * AP_INIT_RAW_ARGS("directive", function, mconfig, where, help)
167 * AP_INIT_FLAG("directive", function, mconfig, where, help)
175 * AP_INIT_TAKE1("directive", function, mconfig, where, help)
184 * AP_INIT_TAKE2("directive", function, mconfig, where, help)
194 * AP_INIT_TAKE3("directive", function, mconfig, where, help)
205 * AP_INIT_TAKE12("directive", function, mconfig, where, help)
217 * AP_INIT_TAKE123("directive", function, mconfig, where, help)
228 * AP_INIT_TAKE13("directive", function, mconfig, where, help)
239 * AP_INIT_TAKE23("directive", function, mconfig, where, hel
351 char *where, *addon; local
395 char *addon, *where; local
441 char *addon, *where; local
[all...]
/httpd/modules/core/
H A Dmod_macro.c141 const char *where,
165 where);
191 any_nesting, where);
295 static void check_macro_use_arguments(const char *where, argument
303 "%s: empty argument #%d", where, i + 1);
561 ap_configfile_t **upper; /* hack: where to update it if needed */
663 const char *where,
679 return ap_pcfg_open_custom(pool, where, (void *) ls,
693 char *endp, *name, *where; local
755 where
137 get_lines_till_end_token(apr_pool_t * pool, ap_configfile_t * config_file, const char *end_token, const char *begin_token, const char *where, apr_array_header_t ** plines) argument
661 make_array_config(apr_pool_t * pool, apr_array_header_t * contents, const char *where, ap_configfile_t * cfg, ap_configfile_t ** upper) argument
802 char *name, *recursion, *where; local
[all...]
/httpd/modules/metadata/
H A Dmod_mime_magic.c59 * structures passed to them where necessary to call other Apache API
68 * - Places where it used to print results to stdout now saves them in a
69 * list where they're used to set the MIME type in the Apache request
456 const char *magicfile; /* where magic be found */
2181 * where we would end up with LOTS of zombies.
2265 static long from_oct(int digs, char *where) argument
2269 while (apr_isspace(*where)) { /* Skip spaces */
2270 where++;
2275 while (digs > 0 && isodigit(*where)) { /* Scan til nonoctal */
2276 value = (value << 3) | (*where
[all...]
/httpd/modules/ssl/
H A Dssl_engine_kernel.c404 * o The paranoid and default approach where we force a renegotiation when
409 * o The optimized and still secure way where we force a renegotiation
1731 * inter-process disk-cache where it was perhaps stored by one
1807 server_rec *s, int where, int rc)
1812 if (where & SSL_CB_HANDSHAKE_START) {
1816 else if (where & SSL_CB_HANDSHAKE_DONE) {
1820 else if (where & SSL_CB_LOOP) {
1825 else if (where & SSL_CB_READ) {
1830 else if (where & SSL_CB_WRITE) {
1835 else if (where
1806 log_tracing_state(const SSL *ssl, conn_rec *c, server_rec *s, int where, int rc) argument
1877 ssl_callback_Info(const SSL *ssl, int where, int rc) argument
[all...]
/httpd/modules/mappers/
H A Dmod_rewrite.c345 char *directory; /* the directory where it applies */
346 const char *baseurl; /* the base-URL where it applies */
624 unsigned char *where)
629 *where++ = prefix;
630 *where++ = c2x_table[what >> 4];
631 *where++ = c2x_table[what & 0xf];
632 return where;
1025 /* Now we should have a valid map->entries hash, where we
1066 * where it belongs (r->pool usually)
3936 /* Note: the only type where th
623 c2x(unsigned what, unsigned char prefix, unsigned char *where) argument
[all...]
/httpd/server/
H A Dutil.c1841 unsigned char *where)
1846 *where++ = prefix;
1847 *where++ = c2x_table[what >> 4];
1848 *where++ = c2x_table[what & 0xf];
1849 return where;
1861 * reference. Again, RFC 1808 is where this stuff is defined.
1840 c2x(unsigned what, unsigned char prefix, unsigned char *where) argument

Completed in 56 milliseconds