Searched defs:s1 (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/http/ |
H A D | http_protocol.c | 1109 const char *error_notes, *h1, *s1; local 1151 s1 = apr_pstrcat(p, 1156 return(add_optional_notes(r, s1, "error-notes", "</p>\n")); 1172 s1 = apr_pstrcat(p, 1178 return(add_optional_notes(r, s1, "variant-list", "")); 1182 s1 = apr_pstrcat(p, 1187 return(add_optional_notes(r, s1, "error-notes", "</p>\n")); 1196 s1 = apr_pstrcat(p, 1202 return(add_optional_notes(r, s1, "error-notes", "</p>\n")); 1204 s1 [all...] |
/httpd/server/ |
H A D | util_expr_eval.c | 108 const char *s1 = ap_expr_eval_word(ctx, node->node_arg1); local 110 if (!*s1) 113 result = s1; 115 result = apr_pstrcat(ctx->p, s1, s2, NULL); 239 static int intstrcmp(const char *s1, const char *s2) argument 241 apr_int64_t i1 = apr_atoi64(s1); 580 #define DUMP_S_E(op, s1, e1) \ 581 do { ap_log_error(MARK,"%*s%s: '%s' %pp", indent, " ", op, (char *)s1, e1); \ 584 #define DUMP_S_P(op, s1, p1) \ 585 ap_log_error(MARK,"%*s%s: '%s' %pp", indent, " ", op, (char *)s1, p [all...] |
H A D | util_expr_scan.c | 2636 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) argument 2640 s1[i] = s2[i];
|
H A D | util.c | 305 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2) argument 310 return((char *)s1); 313 for ( ; (*s1 != '\0') && (apr_tolower(*s1) != apr_tolower(*s2)); s1++); 314 if (*s1 == '\0') { 318 p1 = (char *)s1; 323 return((char *)s1); 330 /* didn't find a match here, try starting at next character in s1 */ 331 s1 [all...] |
Completed in 26 milliseconds