Searched refs:strstr (Results 1 - 15 of 15) sorted by relevance
/httpd/server/ |
H A D | util_debug.c | 33 #if defined (strstr) 34 #undef strstr macro 85 return strstr(s,c); 95 return strstr(s,c);
|
/httpd/include/ |
H A D | httpd.h | 2245 #undef strstr macro 2246 # define strstr(s, c) ap_strstr(s,c) macro 2274 # define ap_strstr(s, c) strstr(s, c) 2276 # define ap_strstr_c(s, c) strstr(s, c)
|
/httpd/modules/filters/ |
H A D | mod_proxy_html.c | 257 for (found = strstr(ctx->buf, m->from.c); found; 258 found = strstr(ctx->buf+match+s_to, m->from.c)) { 599 found = strstr(ctx->buf, m->from.c); 608 found = strstr(ctx->buf+match+s_from, 613 found = strstr(ctx->buf+match+s_to,
|
H A D | mod_xml2enc.c | 321 if (strncmp(ctype, "text/", 5) && !strstr(ctype, "xml")) {
|
/httpd/support/ |
H A D | ab.c | 108 * - (performance problem) heavy use of strstr shows up top in profile 1502 c->cbuff[c->cbx] = 0; /* terminate for benefit of strstr */ 1506 s = strstr(c->cbuff, "\r\n\r\n"); 1512 s = strstr(c->cbuff, "\n\n"); 1540 p = strstr(c->cbuff, "Server:"); 1558 part = strstr(c->cbuff, "HTTP"); /* really HTTP/1.x_ */ 1578 (strstr(c->cbuff, "Keep-Alive") 1579 || strstr(c->cbuff, "keep-alive"))) { /* for benefit of MSIIS */ 1581 cl = strstr(c->cbuff, "Content-Length:"); 1584 cl = strstr( [all...] |
H A D | suexec.c | 396 || (strstr(cmd, "/../") != NULL)) {
|
H A D | htcacheclean.c | 291 vary = strstr(name, CACHE_VDIR_SUFFIX);
|
/httpd/modules/mappers/ |
H A D | mod_vhost_alias.c | 393 cgi = strstr(r->uri, "cgi-bin/");
|
H A D | mod_negotiation.c | 848 * so that strstr() will find something with no reliance on 852 endbody = strstr(buffer, tag);
|
/httpd/modules/proxy/ |
H A D | mod_proxy_balancer.c | 151 for (path = strstr(url, name); path; path = strstr(path + 1, name)) { 389 const char *scheme = strstr(*url, "://");
|
H A D | mod_proxy_ftp.c | 502 if ((type = strstr(path, ";type=")) != NULL) 659 if (ctx->buffer[0] == 'l' && (filename = strstr(ctx->buffer, " -> ")) != NULL) {
|
H A D | proxy_util.c | 948 * about, and we can't just find them with strstr 'cos of case. Regexp 2597 if (strstr(buffer + len - nbytes, CRLF_ASCII CRLF_ASCII) != NULL) { 2610 if (strstr(drain_buffer, CRLF_ASCII CRLF_ASCII) != NULL) {
|
/httpd/modules/cache/ |
H A D | cache_storage.c | 608 param = strstr(querystring, complete);
|
/httpd/server/mpm/netware/ |
H A D | mpm_netware.c | 1208 pID = strstr (szcommandLine, "-p");
|
/httpd/modules/lua/ |
H A D | lua_request.c | 321 /* ap_lua_binstrstr: Binary strstr function for uploaded data with NULL bytes */ 366 start = strstr((char *) data, multipart); 372 crlf = strstr((char *) start, "\r\n\r\n");
|
Completed in 1973 milliseconds