Searched refs:s1 (Results 1 - 8 of 8) sorted by relevance

/httpd/modules/ssl/
H A Dssl_private.h237 #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 Dhttp_protocol.c1109 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 Dmod_nw_ssl.c88 #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 Dutil_expr_eval.c108 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 Dutil.c305 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 Dutil_expr_scan.c2636 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 Dregexp.c50 #define ecmp(s1, s2, n) (strncmp(s1, s2, n) == 0)
/httpd/include/
H A Dhttpd.h1889 * 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 1543 milliseconds