Searched refs:needle (Results 1 - 6 of 6) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/netfilter/
H A Dipt_webstr.c227 static char *search_linear (char *needle, char *haystack, int needle_len, int haystack_len) argument
232 SPARQ_LOG("%s: haystack=%s, needle=%s\n", __FUNCTION__, t, needle);
234 //SPARQ_LOG("%s: haystack=%s, needle=%s\n", __FUNCTION__, t, needle);
235 if (strnicmp(t, needle, needle_len) == 0) return t;
236 //if ( memcmp(t, needle, needle_len) == 0 ) return t;
306 char needle[BUFSIZE], *haystack = NULL; local
317 split(needle, wordlist, next, token) {
318 nlen = strlen(needle);
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/modules/
H A Dvfs_recycle.c251 * Check if needle is contained exactly in haystack
253 * @param needle string to be matched exactly to haystack
256 static BOOL checkparam(const char **haystack_list, const char *needle) argument
261 *haystack_list[0] == '\0' || needle == NULL || *needle == '\0') {
266 if(strequal(haystack_list[i], needle)) {
275 * Check if needle is contained in haystack, * and ? patterns are resolved
277 * @param needle string to be matched exectly to haystack including pattern matching
280 static BOOL matchparam(const char **haystack_list, const char *needle) argument
285 *haystack_list[0] == '\0' || needle
[all...]
/asus-wl-520gu-7.0.1.45/src/router/httpd/
H A Dej.c30 unqstrstr(char *haystack, char *needle) argument
36 cur < &haystack[strlen(haystack)] && !(!q && !strncmp(needle, cur, strlen(needle)));
/asus-wl-520gu-7.0.1.45/src/shared/
H A Dbcmutils.c568 /* return pointer to location of substring 'needle' in 'haystack' */
570 BCMROMFN(bcmstrstr)(char *haystack, char *needle) argument
575 if ((haystack == NULL) || (needle == NULL))
578 nlen = strlen(needle);
582 if (memcmp(needle, &haystack[i], nlen) == 0)
/asus-wl-520gu-7.0.1.45/src/include/
H A Dbcmutils.h183 extern char *BCMROMFN(bcmstrstr)(char *haystack, char *needle);
/asus-wl-520gu-7.0.1.45/src/router/ez-ipupdate/
H A Dez-ipupdate.c683 static int is_in_list(char *needle, char **haystack);
4352 static int is_in_list(char *needle, char **haystack) argument
4359 if(strcmp(needle, *p) == 0)

Completed in 213 milliseconds