Searched refs:strncasecmp (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/include/ |
D | strings.h | 52 int strncasecmp(const char *, const char *, size_t);
|
D | string.h | 58 extern int strncasecmp(const char *, const char *, size_t);
|
/bionic/libc/tzcode/ |
D | strptime.c | 210 if (strncasecmp(_ctloc(day[i]), bp, len) == 0) in _strptime() 215 if (strncasecmp(_ctloc(abday[i]), bp, len) == 0) in _strptime() 234 if (strncasecmp(_ctloc(mon[i]), bp, len) == 0) in _strptime() 239 if (strncasecmp(_ctloc(abmon[i]), bp, len) == 0) in _strptime() 308 if (strncasecmp(_ctloc(am_pm[0]), bp, len) == 0) { in _strptime() 319 if (strncasecmp(_ctloc(am_pm[1]), bp, len) == 0) { in _strptime()
|
/bionic/libc/string/ |
D | strcasestr.c | 56 } while (strncasecmp(s, find, len) != 0); in strcasestr()
|
D | strcasecmp.c | 90 strncasecmp(const char *s1, const char *s2, size_t n) in strncasecmp() function
|
/bionic/libc/netbsd/nameser/ |
D | ns_samedomain.c | 104 return (strncasecmp(a, b, lb) == 0); in ns_samedomain() 144 return (strncasecmp(cp, b, lb) == 0); in ns_samedomain()
|
/bionic/libstdc++/include/ |
D | cstring | 64 using ::strncasecmp;
|
/bionic/libc/netbsd/resolv/ |
D | res_debug.c | 1140 if (strncasecmp(buf, "CLASS", 5) != 0 || in res_nametoclass() 1163 if (strncasecmp(buf, "type", 4) != 0 || in res_nametotype()
|
/bionic/libc/stdlib/ |
D | strtod.c | 1277 if (tolower((unsigned char)*s) == 'i' && strncasecmp(s, "inf", 3) == 0) { 1278 if (strncasecmp(s + 3, "inity", 5) == 0) 1289 if (tolower((unsigned char)*s) == 'n' && strncasecmp(s, "nan", 3) == 0) {
|