/httpd/build/ |
H A D | mkdep.perl | 52 $str = "$of:\t$file"; 53 $len = length $str; 58 $str = "\t"; 59 $len = length $str; 80 print $str, "\\\n"; 82 $str = $str . $1; 84 else { $str = $str . " " . $1; } 89 print $str, "\ [all...] |
/httpd/docs/cgi-examples/ |
H A D | printenv.vbs | 18 Dim objShell, objArray, str, envvar, envval 23 For Each str In objShell.Environment("PROCESS") 24 objArray.Add str 27 For Each str In objArray 28 envvar = Left(str, InStr(str, "=")) 29 envval = Replace(Mid(str, InStr(str, "=") + 1), vbLF, "\n")
|
/httpd/support/win32/ |
H A D | wintty.c | 66 char str[1024]; local 71 wvsprintf(str, fmt, args); 72 OutputDebugString(str); 84 char str[1024], *contitle = NULL; local 160 else if (!GetUserObjectInformation(hsavewinsta, UOI_NAME, str, sizeof(str), &len)) { 163 else if (strnicmp(str, "Service-", 8) == 0) { 164 printerr("WindowStation Name %s is a service\n", str); 328 while (ReadFile(hstdin, str, sizeof(str), 364 char *str[1024]; local [all...] |
/httpd/server/ |
H A D | util_regex.c | 44 const char *str = pattern; local 50 delim = *str++; 55 str += 2; 59 str += 2; 66 endp = ap_strchr_c(str, delim); 80 rxstr = apr_pstrndup(pool, str, endp-str); 87 str = endp+1; 88 if (!*str || (endp = ap_strchr_c(str, deli [all...] |
H A D | eoc_bucket.c | 20 static apr_status_t eoc_bucket_read(apr_bucket *b, const char **str, argument 23 *str = NULL;
|
H A D | eor_bucket.c | 43 static apr_status_t eor_bucket_read(apr_bucket *b, const char **str, argument 46 *str = NULL;
|
H A D | error_bucket.c | 24 static apr_status_t error_bucket_read(apr_bucket *b, const char **str, argument 27 *str = NULL;
|
H A D | util_expr_scan.l | 37 %x str 106 BEGIN(str); 128 BEGIN(str); 131 <str>["'] { 153 <str,var,vararg>\n { 159 <str><<EOF>> { 172 <str,vararg>\\[0-7]{1,3} { 183 <str,vararg>\\[0-9]+ { 186 <str,vararg>\\n { STR_APPEND('\n'); } 187 <str,varar [all...] |
H A D | util.c | 189 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected) argument 194 if ((!str[x]) && (expected[y] != '*')) 200 while (str[x]) { 202 if ((ret = ap_strcmp_match(&str[x++], &expected[y])) != 1) 207 else if ((expected[y] != '?') && (str[x] != expected[y])) 210 return (str[x] != '\0'); 213 AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected) argument 218 if (!str[x] && expected[y] != '*') 224 while (str[x]) { 226 if ((ret = ap_strcasecmp_match(&str[ 254 ap_is_matchexp(const char *str) argument 783 const char *str = *line, *strend; local 1643 ap_escape_shell_cmd(apr_pool_t *p, const char *str) argument 2001 ap_escape_logitem(apr_pool_t *p, const char *str) argument 2144 ap_has_cntrl(const char *str) argument 2238 ap_str_tolower(char *str) argument 2246 ap_str_toupper(char *str) argument 2262 char str[MAXHOSTNAMELEN + 1]; local 2336 ap_content_type_tolower(char *str) argument 2875 ap_varbuf_strmemcat(struct ap_varbuf *vb, const char *str, int len) argument [all...] |
/httpd/include/ |
H A D | util_varbuf.h | 114 * @param str The string to append; must be at least len bytes long 115 * @param len The number of characters of *str to concatenate to the buf 119 AP_DECLARE(void) ap_varbuf_strmemcat(struct ap_varbuf *vb, const char *str, 148 * @param str The string to append 151 #define ap_varbuf_strcat(vb, str) ap_varbuf_strmemcat(vb, str, strlen(str))
|
H A D | apreq_util.h | 220 * @param str The string to decode 224 static APR_INLINE apr_ssize_t apreq_unescape(char *str) argument 227 apr_status_t rv = apreq_decode(str, &len, str, strlen(str));
|
H A D | util_filter.h | 567 * @param str The string to write 569 #define ap_fputs(f, bb, str) \ 570 apr_brigade_write(bb, ap_filter_flush, f, str, strlen(str))
|
H A D | http_protocol.h | 407 * @param str The string to output 412 static APR_INLINE int ap_rputs(const char *str, request_rec *r) argument 414 return ap_rwrite(str, (int)strlen(str), r);
|
/httpd/modules/metadata/ |
H A D | mod_unique_id.c | 190 char *str; local 225 /* alloc str and do the uuencoding */ 226 str = (char *)apr_palloc(r->pool, unique_id_rec_size_uu + 1); 230 str[k++] = uuencoder[y[0] >> 2]; 231 str[k++] = uuencoder[((y[0] & 0x03) << 4) | ((y[1] & 0xf0) >> 4)]; 233 str[k++] = uuencoder[((y[1] & 0x0f) << 2) | ((y[2] & 0xc0) >> 6)]; 235 str[k++] = uuencoder[y[2] & 0x3f]; 237 str[k++] = '\0'; 244 return str;
|
/httpd/support/ |
H A D | firehose.c | 284 static int check_prefix(file_rec *file, header_rec *header, const char *str, argument 299 if (len > filter->len && !strncmp(filter->prefix, str, filter->len)) { 320 const char *str, apr_size_t len) 344 if (APR_SUCCESS != (status = apr_file_write_full(handle, str, len, 428 const char *str, apr_size_t len) 434 const char *end = str + len; 436 if (APR_SUCCESS != (status = read_hex(&str, &val))) { 441 if (!apr_isspace(*(str++))) { 445 if (APR_SUCCESS != (status = read_hex(&str, &val))) { 450 if (!apr_isspace(*(str 319 process_body(file_rec *file, header_rec *header, const char *str, apr_size_t len) argument 427 process_header(file_rec *file, header_rec *header, const char *str, apr_size_t len) argument 526 char str[HUGE_STRING_LEN]; local [all...] |
H A D | ctlogconfig | 238 str(rec.min_valid_timestamp) if rec.min_valid_timestamp else '-INF' 240 str(rec.max_valid_timestamp) if rec.max_valid_timestamp else '+INF' 242 print ' Record ' + str(rec.id) + \
|
/httpd/modules/aaa/ |
H A D | mod_authn_dbd.c | 159 char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, local 163 while (str[j]) { 164 if (!apr_isalnum(str[j])) { 165 str[j] = '_'; 168 str[j] = apr_toupper(str[j]); 172 apr_table_set(r->subprocess_env, str, 255 char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, local 259 while (str[j]) { 260 if (!apr_isalnum(str[ [all...] |
/httpd/modules/echo/ |
H A D | mod_echo.c | 73 const char *str; local 77 if ((rv = apr_bucket_read(b, &str, &len, APR_NONBLOCK_READ)) 81 if ((pos = memchr(str, APR_ASCII_LF, len)) != NULL) 82 len = pos - str; 85 memcpy (buff + readbytes, str, len);
|
/httpd/docs/manual/style/css/ |
H A D | prettify.css | 7 .str { color: #060 } /* string content */ 23 .str { color: #060 } 82 .lang-c .str { color: #009606 } /* string content */ 101 .lang-lua .str { color: #009606 } /* string content */ 119 .lang-perl .str { color: #009606 } /* string content */
|
/httpd/os/unix/ |
H A D | unixd.c | 62 char *str; local 77 if (*(str = ap_getword_conf(cmd->temp_pool, &arg)) != '\0') { 78 if (!strcasecmp(str, "max")) { 82 cur = atol(str); 91 if (arg2 && (*(str = ap_getword_conf(cmd->temp_pool, &arg2)) != '\0')) { 92 max = atol(str);
|
/httpd/modules/dav/main/ |
H A D | util.c | 141 const char *str) 143 dav_set_bufsize(p, pbuf, strlen(str)); 144 memcpy(pbuf->buf, str, pbuf->cur_len + 1); 149 const char *str) 151 apr_size_t len = strlen(str); 154 memcpy(pbuf->buf + pbuf->cur_len, str, len + 1); 160 const char *str) 162 apr_size_t len = strlen(str); 165 memcpy(pbuf->buf + pbuf->cur_len, str, len + 1); 589 /* fetch_next_token returns the substring from str 140 dav_buffer_init(apr_pool_t *p, dav_buffer *pbuf, const char *str) argument 148 dav_buffer_append(apr_pool_t *p, dav_buffer *pbuf, const char *str) argument 159 dav_buffer_place(apr_pool_t *p, dav_buffer *pbuf, const char *str) argument 593 dav_fetch_next_token(char **str, char term) argument 623 char *str; local [all...] |
/httpd/modules/loggers/ |
H A D | mod_journald.c | 187 char *str; local 192 str = apr_palloc(r->pool, len + 1); 195 for (i = 0, s = str; i < nelts - 1; ++i) { 200 journald_log(r->pool, (char *) handle, str, len,
|
/httpd/modules/arch/win32/ |
H A D | mod_win32.c | 105 static void prep_string(const char ** str, apr_pool_t *p) argument 107 const char *ch = *str; 122 widen += (ch - *str) + 1; 123 ch = *str; 124 *str = ch2 = apr_palloc(p, widen);
|
/httpd/modules/filters/ |
H A D | regexp.c | 58 static void getrnge(char *str, step_vars_storage *vars); 593 static void getrnge(char *str, step_vars_storage *vars) argument 595 vars->low = *str++ & 0377; 596 vars->size = ((*str & 0377) == 255)? 20000: (*str &0377) - vars->low;
|
/httpd/modules/proxy/ |
H A D | mod_proxy_ftp.c | 451 char *dir, *path, *reldir, *site, *str, *type; local 523 str = (basedir[0] != '\0') ? "<a href=\"/%2f/\">%2f</a>/" : ""; 527 str = apr_psprintf(p, DOCTYPE_HTML_3_2 535 ap_escape_uri(p, site), str); 537 APR_BRIGADE_INSERT_TAIL(out, apr_bucket_pool_create(str, strlen(str), 549 str = apr_psprintf(p, "<a href=\"%s%s/\">%s</a>/", basedir, 555 APR_BRIGADE_INSERT_TAIL(out, apr_bucket_pool_create(str, 556 strlen(str), p, 569 str [all...] |