/httpd/build/ |
H A D | make_nw_export.awk | 52 prefix = args[1] 53 sub("^.*[(]", "", prefix) 57 add_symbol(prefix "_hook_" symbol) 58 add_symbol(prefix "_hook_get_" symbol) 59 add_symbol(prefix "_run_" symbol)
|
/httpd/support/ |
H A D | check_forensic | 19 prefix=$1 28 name=`tempfile --prefix=$1`
|
H A D | firehose.c | 82 const char *prefix; member in struct:filter_rec 135 "If an optional prefix is specified as a parameter, connections that start\n" \ 136 "with the given prefix will be included. The prefix needs to fit completely\n" \ 299 if (len > filter->len && !strncmp(filter->prefix, str, filter->len)) { 752 filter->prefix = opt->argv[opt->ind];
|
H A D | apxs.in | 33 my $prefix = get_vars("prefix"); 34 my $CFG_PREFIX = $prefix; 277 $data =~ s|%PREFIX%|$prefix|sg;
|
/httpd/modules/mappers/ |
H A D | mod_userdir.c | 264 char *filename = NULL, *prefix = NULL; local 269 prefix = ap_getword(r->pool, &userdir, '*'); 272 if (prefix) { 281 if (strchr(prefix + 2, ':')) 283 if (strchr(prefix, ':') && !is_absolute) 286 redirect = apr_pstrcat(r->pool, prefix, user, userdir, 292 filename = apr_pstrcat(r->pool, prefix, user, userdir, 298 else if (prefix && ap_strchr_c(prefix, ':')) { 299 redirect = apr_pstrcat(r->pool, prefix, use [all...] |
H A D | mod_rewrite.c | 623 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix, argument 629 *where++ = prefix; 939 * substitute the prefix path 'match' in 'input' with 'subst' (RewriteBase) 954 rewritelog((r, 5, NULL, "strip matching prefix: %s -> %s", input, 972 rewritelog((r, 4, NULL, "add subst prefix: %s -> %s", input+len, 978 /* prefix didn't match */ 4069 rewritelog((r, 3, ctx->perdir, "strip per-dir prefix: %s -> %s", 4184 /* Add the previously stripped per-directory location prefix, unless 4190 rewritelog((r, 3, ctx->perdir, "add per-dir prefix: %s -> %s%s", 4244 * http[s]://<ourhost>[:<port>] prefix, 5120 const char *prefix = ap_context_prefix(r); local [all...] |
/httpd/modules/cache/ |
H A D | mod_cache_disk.h | 43 const char *prefix; member in struct:disk_cache_object 49 const char *key; /* On-disk prefix; URI with Vary bits (if present) */
|
H A D | mod_cache_disk.c | 82 if (dobj->prefix) { 83 return apr_pstrcat(p, dobj->prefix, CACHE_VDIR_SUFFIX "/", 100 if (dobj->prefix) { 101 return apr_pstrcat(p, dobj->prefix, CACHE_VDIR_SUFFIX "/", 382 dobj->prefix = NULL; 441 dobj->prefix = NULL; 479 dobj->prefix = dobj->vary.file; 979 if (dobj->prefix) { 980 dobj->hdrs.file = dobj->prefix; 981 dobj->prefix [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_rand.c | 46 int ssl_rand_seed(server_rec *s, apr_pool_t *p, ssl_rsctx_t nCtx, char *prefix) argument 136 "%sSeeding PRNG with %d bytes of entropy", prefix, nDone); 140 "%sPRNG still contains insufficient entropy!", prefix);
|
H A D | ssl_engine_vars.c | 77 const char *prefix; local 101 prefix = TLS_UNIQUE_PREFIX; 117 prefix = TLS_SERVER_END_POINT_PREFIX; 125 memcpy(retbuf, prefix, preflen); 934 * 'nids', using key prefix 'pfx'. */
|
/httpd/server/ |
H A D | util_pcre.c | 278 apr_array_header_t *names, const char *prefix, 299 if (upper || prefix) { 301 prefix ? apr_pstrcat(names->pool, prefix, offset + 2, 277 ap_regname(const ap_regex_t *preg, apr_array_header_t *names, const char *prefix, int upper) argument
|
H A D | log.c | 1238 * prefix and suffix. 1398 char prefix[20]; local 1401 prefix[0] = '\0'; 1417 apr_snprintf(prefix, sizeof prefix, "%04x: ", (unsigned int)off); 1421 c, r, NULL, "%s%s", prefix, buf);
|
H A D | util.c | 338 * prefix. Returns bigstring if bigstring doesn't start with 339 * prefix or if prefix is longer than bigstring while still matching. 345 const char *prefix) 349 if (*prefix == '\0') 353 while (*p1 && *prefix) { 354 if (*p1++ != *prefix++) 357 if (*prefix == '\0') 1419 good = 0; /* not good if only a prefix was matched */ 1840 static APR_INLINE unsigned char *c2x(unsigned what, unsigned char prefix, argument 344 ap_stripprefix(const char *bigstring, const char *prefix) argument [all...] |
H A D | util_expr_eval.c | 1893 const char *prefix = ""; local 1917 prefix = "-"; 1920 prefix, parms->name);
|
H A D | core.c | 3235 AP_DECLARE(const char *) ap_psignature(const char *prefix, request_rec *r) argument 3249 return apr_pstrcat(r->pool, prefix, "<address>", 3260 return apr_pstrcat(r->pool, prefix, "<address>", ap_get_server_banner(),
|
/httpd/include/ |
H A D | ap_regex.h | 80 #define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */ 173 * @param prefix An optional prefix to add to the returned names. AP_REG_MATCH 174 * is the recommended prefix. 178 apr_array_header_t *names, const char *prefix,
|
H A D | httpd.h | 1385 * on disk that maps to the context_prefix URI prefix. 1393 * Get the context_prefix for a request. The context_prefix URI prefix 1401 * @param prefix the URI prefix, without trailing slash 1404 * @note If one of prefix of document_root is NULL, the corrsponding 1407 AP_DECLARE(void) ap_set_context_info(request_rec *r, const char *prefix, 1706 * with a '/' in it (and thus does not prefix "./"). 1899 * Return a pointer to the location inside of bigstring immediately after prefix 1901 * @param prefix The prefix t [all...] |
/httpd/modules/dav/main/ |
H A D | util.c | 425 const char *prefix, const char *uri) 427 /* this "should" not overwrite a prefix mapping */ 428 apr_hash_set(xi->prefix_uri, prefix, APR_HASH_KEY_STRING, uri); 430 /* note: this may overwrite an existing URI->prefix mapping, but it 431 doesn't matter -- any prefix is usuable to specify the URI. */ 432 apr_hash_set(xi->uri_prefix, uri, APR_HASH_KEY_STRING, prefix); 438 const char *prefix; local 440 if ((prefix = apr_hash_get(xi->uri_prefix, uri, 442 return prefix; 444 prefix 424 dav_xmlns_add(dav_xmlns_info *xi, const char *prefix, const char *uri) argument 449 dav_xmlns_get_uri(dav_xmlns_info *xi, const char *prefix) argument 467 const void *prefix; local [all...] |
H A D | props.c | 37 ** prefix. 39 ** A special case exists for properties that had a prefix starting with 46 ** The propname will contain the prefix and the property name. For 67 ** The prefix used for the property is stripped and the URI for it 78 ** are stripped. Each element and attribute will have its prefix removed 79 ** and a new prefix inserted. 87 ** prefix used for their properties. It WILL change when the properties 421 /* use D: prefix to refer to the DAV: namespace URI, 429 /* use D: prefix to refer to the DAV: namespace URI */ 434 /* use D: prefix t 478 const char *prefix = dav_xmlns_add_uri(xi, name->ns); local [all...] |
H A D | mod_dav.h | 532 ** This structure tracks namespace declarations (xmlns:prefix="URI"). 535 ** prefix will specify only one URI. 538 ** the caller does not have specific prefix requirements. 542 apr_hash_t *uri_prefix; /* map URIs to an available prefix */ 550 /* add a specific prefix/URI pair. the prefix/uri should have a lifetime 553 const char *prefix, const char *uri); 555 /* add a URI (if not present); any prefix is acceptable and is returned. 560 /* return the URI for a specified prefix (or NULL if the prefix i [all...] |
/httpd/modules/http/ |
H A D | http_protocol.c | 1085 const char *prefix, 1092 result = apr_pstrcat(r->pool, prefix, suffix, NULL); 1095 result = apr_pstrcat(r->pool, prefix, notes, suffix, NULL); 1084 add_optional_notes(request_rec *r, const char *prefix, const char *key, const char *suffix) argument
|
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 370 char *prefix = NULL; local 376 prefix = (phase == LDAP_AUTHN) ? AUTHN_PREFIX : sec->authz_prefix; 377 prefix_len = strlen(prefix); 383 char *str = apr_pstrcat(r->pool, prefix, sec->attributes[i], NULL); 1806 "The prefix to add to environment variables set during "
|
/httpd/modules/generators/ |
H A D | mod_autoindex.c | 280 * add a slash to the prefix so that "bar/bletch" won't be matched 302 char *prefix = ""; local 310 prefix = desc_entry->full_path ? "*/" : "*"; 312 prefix, to, "*", NULL); 1073 * If we can open the file, prefix it with the preamble
|
/httpd/server/mpm/winnt/ |
H A D | mpm_winnt.c | 192 static void setup_signal_names(char *prefix) argument 194 apr_snprintf(signal_name_prefix, sizeof(signal_name_prefix), prefix);
|
/httpd/modules/lua/ |
H A D | lua_request.c | 1577 * @param prefix the URI prefix, without trailing slash 1580 * @note If one of prefix of document_root is NULL, the corrsponding 1586 const char *prefix; local 1591 prefix = lua_tostring(L, 2); 1594 ap_set_context_info(r, prefix, document_root); 1605 * with a '/' in it (and thus does not prefix "./")
|