Searched refs:needle (Results 1 - 25 of 57) sorted by path

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/bftpd-1.6.6/
H A Dmystring.c5 int pos(char *haystack, char *needle) argument
7 if (strstr(haystack, needle)) {
8 return (int) strstr(haystack, needle) - (int) haystack;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dsslgen.c81 struct ssl_config_data* needle)
83 if((data->version == needle->version) &&
84 (data->verifypeer == needle->verifypeer) &&
85 (data->verifyhost == needle->verifyhost) &&
86 safe_strequal(data->CApath, needle->CApath) &&
87 safe_strequal(data->CAfile, needle->CAfile) &&
88 safe_strequal(data->random_file, needle->random_file) &&
89 safe_strequal(data->egdsocket, needle->egdsocket) &&
90 safe_strequal(data->cipher_list, needle->cipher_list))
80 Curl_ssl_config_matches(struct ssl_config_data* data, struct ssl_config_data* needle) argument
H A Dsslgen.h27 struct ssl_config_data* needle);
H A Durl.c2844 * Given one filled in connection struct (named needle), this function should
2854 struct connectdata *needle,
2859 bool canPipeline = IsPipeliningPossible(data, needle);
2957 if((needle->handler->flags&PROTOPT_SSL) !=
2962 if(needle->handler->flags&PROTOPT_SSL) {
2968 if(needle->bits.proxy != check->bits.proxy)
2977 if(needle->localdev || needle->localport) {
2989 if((check->localport != needle->localport) ||
2990 (check->localportrange != needle
2853 ConnectionExists(struct SessionHandle *data, struct connectdata *needle, struct connectdata **usethis) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dem_nbyte.c45 struct bstr *needle = args; local
58 if (needle->len <= 0)
59 return PARSE_ERR(args, "nbyte: needle length is 0");
96 nb.len = needle->len;
102 addraw_l(n, MAX_MSG, needle->data, needle->len);
113 __u8 *needle; local
125 needle = data + sizeof(*nb);
128 fprintf(fd, "%02x ", needle[i]);
132 fprintf(fd, "%c", isprint(needle[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dmetadata.h83 ends_with(const char * haystack, const char * needle);
H A Dutils.c56 ends_with(const char * haystack, const char * needle) argument
59 int nlen = strlen(needle);
66 return (strcasecmp(end, needle) ? 0 : 1);
H A Dutils.h34 ends_with(const char * haystack, const char * needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dmetadata.h73 ends_with(const char * haystack, const char * needle);
H A Dutils.c34 ends_with(const char * haystack, const char * needle) argument
37 int nlen = strlen(needle);
44 return (strcasecmp(end, needle) ? 0 : 1);
H A Dutils.h14 ends_with(const char * haystack, const char * needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dmetadata.h71 ends_with(const char * haystack, const char * needle);
H A Dutils.c34 ends_with(const char * haystack, const char * needle) argument
37 int nlen = strlen(needle);
44 return (strcasecmp(end, needle) ? 0 : 1);
H A Dutils.h14 ends_with(const char * haystack, const char * needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/tunala/
H A Dbreakage.c41 char *int_strstr(const char *haystack, const char *needle) argument
43 const char *sub_haystack = haystack, *sub_needle = needle;
45 if(!needle)
58 sub_needle = needle;
H A Dtunala.h211 char *int_strstr(const char *haystack, const char *needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dc-strstr.c33 knuth_morris_pratt (const char *haystack, const char *needle, argument
36 size_t m = strlen (needle);
45 rhaystack[0..i-1] == needle[0..i-1] and rhaystack[i] != needle[i]
47 forall 0 <= x < table[i]: rhaystack[x..x+m-1] != needle[0..m-1],
57 unsigned char b = (unsigned char) needle[i - 1];
61 if (b == (unsigned char) needle[j])
88 if ((unsigned char) needle[j] == (unsigned char) *phaystack)
94 /* The entire needle has been found. */
101 /* Found a match of needle[
119 c_strstr(const char *haystack, const char *needle) argument
[all...]
H A Dc-strstr.h40 extern char *c_strstr (const char *haystack, const char *needle);
H A Dmbsstr.c36 knuth_morris_pratt_unibyte (const char *haystack, const char *needle, argument
39 size_t m = strlen (needle);
48 rhaystack[0..i-1] == needle[0..i-1] and rhaystack[i] != needle[i]
50 forall 0 <= x < table[i]: rhaystack[x..x+m-1] != needle[0..m-1],
60 unsigned char b = (unsigned char) needle[i - 1];
64 if (b == (unsigned char) needle[j])
91 if ((unsigned char) needle[j] == (unsigned char) *phaystack)
97 /* The entire needle has been found. */
104 /* Found a match of needle[
122 knuth_morris_pratt_multibyte(const char *haystack, const char *needle, const char **resultp) argument
233 mbsstr(const char *haystack, const char *needle) argument
[all...]
H A Dstring.in.h331 extern char *strcasestr (const char *haystack, const char *needle);
429 extern char * mbsstr (const char *haystack, const char *needle);
472 strlen (haystack) < strlen (needle) !
474 extern char * mbscasestr (const char *haystack, const char *needle);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dc-strcasestr.c34 knuth_morris_pratt (const char *haystack, const char *needle, argument
37 size_t m = strlen (needle);
46 rhaystack[0..i-1] == needle[0..i-1] and rhaystack[i] != needle[i]
48 forall 0 <= x < table[i]: rhaystack[x..x+m-1] != needle[0..m-1],
58 unsigned char b = c_tolower ((unsigned char) needle[i - 1]);
62 if (b == c_tolower ((unsigned char) needle[j]))
89 if (c_tolower ((unsigned char) needle[j])
96 /* The entire needle has been found. */
103 /* Found a match of needle[
124 c_strcasestr(const char *haystack, const char *needle) argument
[all...]
H A Dc-strcasestr.h28 extern char *c_strcasestr (const char *haystack, const char *needle);
H A Dc-strstr.c33 knuth_morris_pratt (const char *haystack, const char *needle, argument
36 size_t m = strlen (needle);
45 rhaystack[0..i-1] == needle[0..i-1] and rhaystack[i] != needle[i]
47 forall 0 <= x < table[i]: rhaystack[x..x+m-1] != needle[0..m-1],
57 unsigned char b = (unsigned char) needle[i - 1];
61 if (b == (unsigned char) needle[j])
88 if ((unsigned char) needle[j] == (unsigned char) *phaystack)
94 /* The entire needle has been found. */
101 /* Found a match of needle[
119 c_strstr(const char *haystack, const char *needle) argument
[all...]
H A Dc-strstr.h40 extern char *c_strstr (const char *haystack, const char *needle);

Completed in 254 milliseconds

123