HomeSort by relevance Sort by last modified time
    Searched refs:strncasecmp (Results 26 - 50 of 306) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-netbsd/lib/libc/string/
strcasestr.c 65 } while (strncasecmp(s, find, len) != 0);
  /device/google/contexthub/firmware/lib/libc/
strcasecmp.c 90 strncasecmp(const char *s1, const char *s2, size_t n) function
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
strings.h 64 int strncasecmp(const char *, const char *, size_t) __pure;
  /frameworks/av/media/libstagefright/
DataSourceFactory.cpp 44 if (!strncasecmp("file://", uri, 7)) {
46 } else if (!strncasecmp("http://", uri, 7) || !strncasecmp("https://", uri, 8)) {
85 } else if (!strncasecmp("data:", uri, 5)) {
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
String.inf 35 strncasecmp.c
  /toolchain/binutils/binutils-2.27/opcodes/
or1k-asm.c 69 if (strncasecmp (*strp, "plt(", 4) == 0)
98 if (strncasecmp (*strp, "hi(", 3) == 0)
119 else if (strncasecmp (*strp, "lo(", 3) == 0)
138 else if (strncasecmp (*strp, "got(", 4) == 0)
154 else if (strncasecmp (*strp, "gotpchi(", 8) == 0)
171 else if (strncasecmp (*strp, "gotpclo(", 8) == 0)
188 else if (strncasecmp (*strp, "gotoffhi(", 9) == 0)
206 else if (strncasecmp (*strp, "gotofflo(", 9) == 0)
223 else if (strncasecmp (*strp, "tlsgdhi(", 8) == 0)
241 else if (strncasecmp (*strp, "tlsgdlo(", 8) == 0
    [all...]
  /external/clang/test/Analysis/
string.c 986 // strncasecmp()
989 #define strncasecmp BUILTIN(strncasecmp) macro
990 int strncasecmp(const char *s1, const char *s2, size_t n);
995 clang_analyzer_eval(strncasecmp(x, y, 2) > 0); // expected-warning{{TRUE}}
996 clang_analyzer_eval(strncasecmp(x, y, 2) <= 0); // expected-warning{{FALSE}}
997 clang_analyzer_eval(strncasecmp(x, y, 2) > 1); // expected-warning{{UNKNOWN}}
999 clang_analyzer_eval(strncasecmp(y, x, 2) < 0); // expected-warning{{TRUE}}
1000 clang_analyzer_eval(strncasecmp(y, x, 2) >= 0); // expected-warning{{FALSE}}
1001 clang_analyzer_eval(strncasecmp(y, x, 2) < -1); // expected-warning{{UNKNOWN}
    [all...]
  /external/e2fsprogs/lib/e2p/
crypto_mode.c 62 if (strncasecmp(string, "ENC_MODE_", 9))
hashstr.c 60 if (strncasecmp(string, "HASHALG_", 8))
  /external/iptables/extensions/
dscp_helper.c 55 if (!strncasecmp(name, ds_classes[i].name,
libebt_limit.c 61 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
63 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
65 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
67 else if (strncasecmp(delim+1, "day", strlen(delim+1)) == 0)
libipt_REJECT.c 106 if (strncasecmp(reject_table[i].name,
108 strncasecmp(reject_table[i].alias,
114 if (strncasecmp("echo-reply", cb->arg, strlen(cb->arg)) == 0 ||
115 strncasecmp("echoreply", cb->arg, strlen(cb->arg)) == 0)
libxt_limit.c 55 if (strncasecmp(delim+1, "second", strlen(delim+1)) == 0)
57 else if (strncasecmp(delim+1, "minute", strlen(delim+1)) == 0)
59 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
61 else if (strncasecmp(delim+1, "day", strlen(delim+1)) == 0)
libxt_conntrack.c 191 if (strncasecmp(state, "INVALID", len) == 0)
193 else if (strncasecmp(state, "NEW", len) == 0)
195 else if (strncasecmp(state, "ESTABLISHED", len) == 0)
197 else if (strncasecmp(state, "RELATED", len) == 0)
199 else if (strncasecmp(state, "UNTRACKED", len) == 0)
201 else if (strncasecmp(state, "SNAT", len) == 0)
203 else if (strncasecmp(state, "DNAT", len) == 0)
232 if (strncasecmp(state, "INVALID", z) == 0)
234 else if (strncasecmp(state, "NEW", z) == 0)
236 else if (strncasecmp(state, "ESTABLISHED", z) == 0
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
add-mo.php 21 if (strlen($user) < 1 || strncasecmp($user, "cert-", 5) == 0) {
  /bionic/libc/dns/nameser/
ns_samedomain.c 105 return (strncasecmp(a, b, lb) == 0);
145 return (strncasecmp(cp, b, lb) == 0);
  /toolchain/binutils/binutils-2.27/cpu/
iq2000.opc 200 if (strncasecmp (*strp, "%hi(", 4) == 0)
231 if (strncasecmp (*strp, "%uhi(", 5) == 0)
267 if (strncasecmp (*strp, "%lo(", 4) == 0)
299 if (strncasecmp (*strp, "%lo(", 4) == 0)
xc16x.opc 96 if (strncasecmp (*strp, "pof:", 4) == 0)
112 if (strncasecmp (*strp, "pag:", 4) == 0)
128 if (strncasecmp (*strp, "sof:", 4) == 0)
144 if (strncasecmp (*strp, "seg:", 4) == 0)
  /bionic/libc/tzcode/
strptime.c 214 if (strncasecmp(_ctloc(day[i]), (const char*)bp, len) == 0)
219 if (strncasecmp(_ctloc(abday[i]), (const char*)bp, len) == 0)
238 if (strncasecmp(_ctloc(mon[i]), (const char*)bp, len) == 0)
243 if (strncasecmp(_ctloc(abmon[i]), (const char*)bp, len) == 0)
312 if (strncasecmp(_ctloc(am_pm[0]), (const char*)bp, len) == 0) {
323 if (strncasecmp(_ctloc(am_pm[1]), (const char*)bp, len) == 0) {
  /toolchain/binutils/binutils-2.27/gas/config/
tc-hppa.c     [all...]
  /external/selinux/libsepol/src/
genusers.c 72 if (strncasecmp(p, "user", 4))
131 if (strncasecmp(p, "roles", 5))
194 if (strncasecmp(p, "level", 5))
204 while (*p && strncasecmp(p, "range", 5))
241 if (strncasecmp(p, "range", 5))
  /system/core/base/
strings.cpp 99 return strncasecmp(s.c_str(), prefix, strlen(prefix)) == 0;
103 return strncasecmp(s.c_str(), prefix.c_str(), prefix.size()) == 0;
113 return (case_sensitive ? strncmp : strncasecmp)(s.c_str() + offset, suffix, suffix_length) == 0;
  /external/selinux/libselinux/src/
selinux_config.c 103 if (!strncasecmp
109 if (!strncasecmp
116 if (!strncasecmp
178 if (!strncasecmp(buf_p, SELINUXTYPETAG,
205 else if (strncasecmp(value, "true", sizeof("true") - 1))
207 else if (strncasecmp
  /external/syslinux/com32/gpllib/dmi/
dmi_processor.c 315 || strncasecmp(manufacturer, "Intel", 5) == 0)
318 || strncasecmp(manufacturer, "AMD", 3) == 0)
  /external/ppp/pppd/plugins/pppoatm/
misc.c 34 !strncasecmp(*pos,value,len)) {

Completed in 1052 milliseconds

12 3 4 5 6 7 8 91011>>