/httpd/support/ |
H A D | httxt2dbm.c | 37 static const char *input; variable 190 input = NULL; 234 if (input) { 239 input = apr_pstrdup(pool, opt_arg); 258 if (!input) { 259 apr_file_printf(errfile, "Error: No input file specified." NL NL); 278 if (!strcmp(input, "-")) { 282 rv = apr_file_open(&infile, input, APR_READ|APR_BUFFERED, 288 "Error: Cannot open input file '%s': (%d) %pm" NL NL, 289 input, r [all...] |
/httpd/modules/filters/ |
H A D | mod_sed.c | 41 sed_expr_config input; member in struct:sed_config 371 /* Entry function for Sed input filter */ 383 sed_expr_config *sed_cfg = &cfg->input; 503 (void *) APR_OFFSETOF(sed_config, input),
|
/httpd/modules/test/ |
H A D | mod_dialup.c | 264 const char *input) 274 if (strcasecmp(standard->name, input) == 0) { 262 cmd_modem_standard(cmd_parms *cmd, void *dconf, const char *input) argument
|
/httpd/modules/cluster/ |
H A D | mod_heartmonitor.c | 130 static void qs_to_table(const char *input, apr_table_t *parms, argument 138 if (input == NULL) { 142 query_string = apr_pstrdup(p, input);
|
/httpd/modules/mappers/ |
H A D | mod_imagemap.c | 579 char input[MAX_STRING_LEN]; local 649 while (!ap_cfg_getline(input, sizeof(input), imap)) { 650 if (!input[0]) { 657 if (input[0] == '#') { 659 menu_comment(r, imap_menu, input + 1); 672 string_pos = input; 701 /* end of input, don't advance past it */
|
H A D | mod_rewrite.c | 298 char *input; /* Input string of RewriteCond */ member in struct:__anon237 939 * substitute the prefix path 'match' in 'input' with 'subst' (RewriteBase) 941 static char *subst_prefix_path(request_rec *r, char *input, const char *match, argument 950 if (!strncmp(input, match, len) && input[len++] == '/') { 954 rewritelog((r, 5, NULL, "strip matching prefix: %s -> %s", input, 955 input+len)); 962 outlen = strlen(input) + slen - len; 969 memcpy(output+slen, input+len, outlen - slen); 972 rewritelog((r, 4, NULL, "add subst prefix: %s -> %s", input 2257 do_expand(char *input, rewrite_ctx *ctx, rewriterule_entry *entry) argument 3830 char *input = NULL; local [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy_balancer.c | 925 ap_rvputs(r, "<td><label for='", name, "1'>On</label> <input name='", name, "' id='", name, "1' value='1' type=radio", NULL); 928 ap_rvputs(r, "> <br/> <label for='", name, "0'>Off</label> <input name='", name, "' id='", name, "0' value='0' type=radio", NULL); 934 static void push2table(const char *input, apr_table_t *params, argument 941 if (input == NULL) { 944 args = apr_pstrdup(p, input); 1567 ap_rputs("<table><tr><td>Load factor:</td><td><input name='w_lf' id='w_lf' type=text ", r); 1569 ap_rputs("<tr><td>LB Set:</td><td><input name='w_ls' id='w_ls' type=text ", r); 1571 ap_rputs("<tr><td>Route:</td><td><input name='w_wr' id='w_wr' type=text ", r); 1575 ap_rputs("<tr><td>Route Redirect:</td><td><input name='w_rr' id='w_rr' type=text ", r); 1590 ap_rputs("<tr><td colspan=2><input typ [all...] |
/httpd/modules/lua/ |
H A D | lua_request.c | 1054 const char *input; local 1058 input = lua_tostring(L, 1); 1059 result = apr_date_parse_rfc(input); 1347 * lua_ap_add_input_filter; r:add_input_filter(name) - Adds an input filter to 2118 static apr_uint64_t ap_ntoh64(const apr_uint64_t *input) argument 2123 return *input; 2126 data[0] = *input >> 56; 2127 data[1] = *input >> 48; 2128 data[2] = *input >> 40; 2129 data[3] = *input >> 3 [all...] |
/httpd/server/ |
H A D | util.c | 371 * input should be the string with the $-expressions, source should be the 382 struct ap_varbuf *vb, const char *input, 386 const char *src = input; 445 src = input; 473 AP_DECLARE(char *) ap_pregsub(apr_pool_t *p, const char *input, argument 478 apr_status_t rc = regsub_core(p, &result, NULL, input, source, nmatch, 486 const char *input, const char *source, 490 apr_status_t rc = regsub_core(p, result, NULL, input, source, nmatch, 2020 /* Compute the length of the input string, including NULL */ 2362 * Look through the input strin 381 regsub_core(apr_pool_t *p, char **result, struct ap_varbuf *vb, const char *input, const char *source, apr_size_t nmatch, ap_regmatch_t pmatch[], apr_size_t maxlen) argument [all...] |