Searched refs:delim (Results 1 - 7 of 7) sorted by relevance

/httpd/server/
H A Dutil_regex.c47 char delim = 0; local
50 delim = *str++;
54 delim = pattern[1];
58 delim = pattern[1];
65 if (delim) {
66 endp = ap_strchr_c(str, delim);
68 if (!endp) { /* there's no delim or flags */
88 if (!*str || (endp = ap_strchr_c(str, delim), !endp)) {
H A Drequest.c885 char *delim; local
1053 delim = strchr(r->path_info + (*r->path_info == '/' ? 1 : 0), '/');
1054 if (delim) {
1055 apr_size_t path_info_len = delim - r->path_info;
1056 *delim = '\0';
1059 r->path_info = delim;
1060 *delim = '/';
H A Dutil.c1174 case '"' : if (!in_com) /* quoted string delim */
2404 * Given a string, append the PID deliminated by delim.
2410 const char *delim)
2413 delim, getpid());
2409 ap_append_pid(apr_pool_t *p, const char *string, const char *delim) argument
/httpd/modules/filters/
H A Dmod_substitute.c564 char delim; local
575 delim = *++ourline;
576 if (delim)
579 if (*ourline != delim) {
580 while (*++ourline && *ourline != delim);
588 if (*ourline != delim) {
589 while (*++ourline && *ourline != delim);
597 if (!delim || !from || !*from || !to) {
603 delim = apr_tolower(*flags); /* re-use */
604 if (delim
[all...]
H A Dmod_proxy_html.c684 char delim; local
708 delim = *p++;
709 for (q = p; *q && *q != delim; ++q);
711 if (*q != delim)
743 const char *delim; local
756 delim = ap_strchr_c(start, '|');
759 if (delim) {
760 var = apr_pstrndup(r->pool, start+2, delim-start-2);
767 if (delim)
768 replacement = apr_pstrndup(r->pool, delim
[all...]
/httpd/modules/core/
H A Dmod_macro.c317 static int number_of_escapes(const char delim, const char *str) argument
322 if (*s == ESCAPE || *s == delim)
/httpd/include/
H A Dhttpd.h2035 * Given a string, append the PID deliminated by delim.
2041 * @param delim The string to use to deliminate the string from the PID
2045 const char *delim);

Completed in 2424 milliseconds