Searched refs:quote (Results 1 - 3 of 3) sorted by relevance

/httpd/server/
H A Dutil.c754 char quote)
762 || (quote && start[i + 1] == quote)))
785 char quote; local
795 if ((quote = *str) == '"' || quote == '\'') {
797 while (*strend && *strend != quote) {
799 (strend[1] == quote || strend[1] == '\\')) {
806 res = substring_conf(p, str + 1, strend - str - 1, quote);
808 if (*strend == quote)
753 substring_conf(apr_pool_t *p, const char *start, int len, char quote) argument
[all...]
/httpd/modules/mappers/
H A Dmod_rewrite.c2691 char quote; local
2700 quote = (*str == '"' || *str == '\'') ? *str++ : '\0';
2704 if ((apr_isspace(*str) && !quote) || (*str == quote)) {
2725 quote = (*str == '"' || *str == '\'') ? *str++ : '\0';
2729 if ((apr_isspace(*str) && !quote) || (*str == quote)) {
2756 quote = (*str == '"' || *str == '\'') ? *str++ : '\0';
2759 if ((apr_isspace(*str) && !quote) || (*str == quote)) {
[all...]
/httpd/modules/filters/
H A Dmod_include.c178 char quote; /* quote character value (or \0) */ member in struct:ssi_internal_ctx
3187 /* check whether it's a valid one. If it begins with a quote, we
3195 intern->quote = *p++;
3278 intern->quote = *p++;
3281 intern->quote = '\0';
3290 if (*p == intern->quote) {
3298 if (intern->quote && *p == '\\') {
3305 if (*p != intern->quote) {
3309 else if (intern->quote
[all...]

Completed in 33 milliseconds