Searched refs:s1 (Results 1 - 8 of 8) sorted by relevance
/httpd/modules/ssl/ |
H A D | ssl_private.h | 237 #define strEQ(s1,s2) (strcmp(s1,s2) == 0) 238 #define strNE(s1,s2) (strcmp(s1,s2) != 0) 239 #define strEQn(s1,s2,n) (strncmp(s1,s2,n) == 0) 240 #define strNEn(s1,s2,n) (strncmp(s1,s2,n) != 0) 242 #define strcEQ(s1,s2) (strcasecmp(s1,s [all...] |
/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/modules/arch/netware/ |
H A D | mod_nw_ssl.c | 88 #define strEQ(s1,s2) (strcmp(s1,s2) == 0) 89 #define strNE(s1,s2) (strcmp(s1,s2) != 0) 90 #define strEQn(s1,s2,n) (strncmp(s1,s2,n) == 0) 91 #define strNEn(s1,s2,n) (strncmp(s1,s2,n) != 0) 93 #define strcEQ(s1,s2) (strcasecmp(s1,s [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.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...] |
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];
|
/httpd/modules/filters/ |
H A D | regexp.c | 50 #define ecmp(s1, s2, n) (strncmp(s1, s2, n) == 0)
|
/httpd/include/ |
H A D | httpd.h | 1889 * Find the first occurrence of the substring s2 in s1, regardless of case 1890 * @param s1 The string to search 1895 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2)
|
Completed in 1563 milliseconds