HomeSort by relevance Sort by last modified time
    Searched refs:strncmp (Results 1 - 25 of 847) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/string/
strncmp_wrapper.S 34 # define ssse3_strcmp_latest strncmp
39 # include "strncmp.S"
  /external/e2fsprogs/misc/
base_device.c 54 if (strncmp(cp, "/dev/", 5) != 0)
59 if (strncmp(cp, "dsk/", 4) == 0)
72 if (strncmp(cp, "rd/", 3) == 0) {
96 if (strncmp(cp, "ide/", 4) == 0)
98 if (strncmp(cp, "scsi/", 5) == 0)
110 if (strncmp(cp, *hier, len) != 0)
126 if (strncmp(cp, "discs/", 6) == 0)
128 else if (strncmp(cp, "disks/", 6) == 0)
132 if (strncmp(cp, disk, 4) != 0)
  /external/openssl/crypto/engine/
eng_fat.c 106 if (!strncmp(alg, "ALL", len))
108 else if (!strncmp(alg, "RSA", len))
110 else if (!strncmp(alg, "DSA", len))
112 else if (!strncmp(alg, "ECDH", len))
114 else if (!strncmp(alg, "ECDSA", len))
116 else if (!strncmp(alg, "DH", len))
118 else if (!strncmp(alg, "RAND", len))
120 else if (!strncmp(alg, "CIPHERS", len))
122 else if (!strncmp(alg, "DIGESTS", len))
124 else if (!strncmp(alg, "PKEY", len)
    [all...]
  /bionic/libc/string/
strncmp.c 1 /* $OpenBSD: strncmp.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */
39 strncmp(const char *s1, const char *s2, size_t n) function
strstr.c 52 } while (strncmp(s, find, len) != 0);
  /external/skia/src/svg/
SkSVGImage.cpp 37 SkASSERT(strncmp(data, "data:image/", 11) == 0);
39 SkASSERT(strncmp(data, "png;", 4) == 0 || strncmp(data, "jpeg;", 5) == 0);
41 SkASSERT(strncmp(data, ";base64,", 8) == 0);
  /external/libmtp/examples/
connect.c 94 if ((strncmp(basename(argv[0]),"mtp-delfile",11) == 0) || (strncmp(basename(argv[0]),"delfile",7) == 0)) {
96 } else if ((strncmp(basename(argv[0]),"mtp-getfile",13) == 0) || (strncmp(basename(argv[0]),"getfile",9) == 0)) {
98 } else if ((strncmp(basename(argv[0]),"mtp-newfolder",13) == 0) || (strncmp(basename(argv[0]),"newfolder",9) == 0)) {
100 } else if ((strncmp(basename(argv[0]),"mtp-sendfile",11) == 0) || (strncmp(basename(argv[0]),"sendfile",7) == 0)) {
102 } else if ((strncmp(basename(argv[0]),"mtp-sendtr",10) == 0) || (strncmp(basename(argv[0]),"sendtr",6) == 0))
    [all...]
  /external/libpcap/
pcap-snoop.c 243 if (strncmp("et", device, 2) == 0 || /* Challenge 10 Mbit */
244 strncmp("ec", device, 2) == 0 || /* Indigo/Indy 10 Mbit,
246 strncmp("ef", device, 2) == 0 || /* O200/2000 10/100 Mbit */
247 strncmp("eg", device, 2) == 0 || /* Octane/O2xxx/O3xxx Gigabit */
248 strncmp("gfe", device, 3) == 0 || /* GIO 100 Mbit */
249 strncmp("fxp", device, 3) == 0 || /* Challenge VME Enet */
250 strncmp("ep", device, 2) == 0 || /* Challenge 8x10 Mbit EPLEX */
251 strncmp("vfe", device, 3) == 0 || /* Challenge VME 100Mbit */
252 strncmp("fa", device, 2) == 0 ||
253 strncmp("qaa", device, 3) == 0 |
    [all...]
  /system/core/adb/
services.c 407 if(!strncmp(name, "tcp:", 4)) {
424 } else if(!strncmp(name, "local:", 6)) {
427 } else if(!strncmp(name, "localreserved:", 14)) {
430 } else if(!strncmp(name, "localabstract:", 14)) {
433 } else if(!strncmp(name, "localfilesystem:", 16)) {
438 } else if(!strncmp("dns:", name, 4)){
443 } else if(!strncmp("dev:", name, 4)) {
445 } else if(!strncmp(name, "framebuffer:", 12)) {
447 } else if(recovery_mode && !strncmp(name, "recover:", 8)) {
449 } else if (!strncmp(name, "jdwp:", 5))
    [all...]
  /external/skia/src/ports/
FontHostConfiguration_android.cpp 96 if (strncmp(attributeName, "variant", nameLength) == 0) {
97 if (strncmp(attributeValue, "elegant", valueLength) == 0) {
99 } else if (strncmp(attributeValue, "compact", valueLength) == 0) {
102 } else if (strncmp(attributeName, "lang", nameLength) == 0) {
121 if (strncmp(tag, "family", len)== 0) {
135 } else if (len == 7 && strncmp(tag, "nameset", len) == 0) {
137 } else if (len == 7 && strncmp(tag, "fileset", len) == 0) {
139 } else if (strncmp(tag, "name", len) == 0 && familyData->currentTag == NAMESET_TAG) {
142 } else if (strncmp(tag, "file", len) == 0 && familyData->currentTag == FILESET_TAG) {
155 if (strncmp(tag, "family", len)== 0)
    [all...]
  /external/dropbear/
cli-service.c 61 && strncmp(SSH_SERVICE_USERAUTH, servicename, len) == 0) {
72 && strncmp(SSH_SERVICE_CONNECTION, servicename, len) == 0) {
svr-service.c 48 strncmp(SSH_SERVICE_USERAUTH, name, len) == 0) {
58 (strncmp(SSH_SERVICE_CONNECTION, name, len) == 0)) {
  /external/llvm/lib/Target/
TargetInstrInfo.cpp 75 if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(),
82 if (atInsnStart && strncmp(Str, MAI.getCommentString(),
  /external/stlport/test/unit/cppunit/
test_main.cpp 84 if (!strncmp(argv[i], "-t=", 3)) {
88 else if (!strncmp(argv[i], "-f=", 3)) {
92 else if (!strncmp(argv[i], "-x=", 3)) {
96 else if (Timer::supported() && !strncmp(argv[i], "-m", 2)) {
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
test_main.cpp 84 if (!strncmp(argv[i], "-t=", 3)) {
88 else if (!strncmp(argv[i], "-f=", 3)) {
92 else if (!strncmp(argv[i], "-x=", 3)) {
96 else if (Timer::supported() && !strncmp(argv[i], "-m", 2)) {
  /ndk/tests/device/test-stlport/unit/cppunit/
test_main.cpp 84 if (!strncmp(argv[i], "-t=", 3)) {
88 else if (!strncmp(argv[i], "-f=", 3)) {
92 else if (!strncmp(argv[i], "-x=", 3)) {
96 else if (Timer::supported() && !strncmp(argv[i], "-m", 2)) {
  /sdk/find_java/
find_java_exe.cpp 71 if (strncmp(argv[i], "-t", 2) == 0) {
75 } else if (strncmp(argv[i], "-d", 2) == 0) {
78 } else if (strncmp(argv[i], "-s", 2) == 0) {
81 } else if (strncmp(argv[i], "-v", 2) == 0) {
  /system/core/init/
devices.c 140 if (strncmp(upath, dp->name + 4, strlen(dp->name + 4)))
172 if (strncmp(path, dp->name, strlen(dp->name)))
235 !strncmp(name, bus->name, bus->name_len))
263 !strncmp(name, bus->name, bus->name_len))
319 if(!strncmp(msg, "ACTION=", 7)) {
322 } else if(!strncmp(msg, "DEVPATH=", 8)) {
325 } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
328 } else if(!strncmp(msg, "FIRMWARE=", 9)) {
331 } else if(!strncmp(msg, "MAJOR=", 6)) {
334 } else if(!strncmp(msg, "MINOR=", 6))
    [all...]
  /external/linux-tools-perf/
builtin-kvm.c 134 if (!strncmp(argv[0], "rec", 3))
136 else if (!strncmp(argv[0], "rep", 3))
138 else if (!strncmp(argv[0], "diff", 4))
140 else if (!strncmp(argv[0], "top", 3))
142 else if (!strncmp(argv[0], "buildid-list", 12))
  /dalvik/vm/
Init.cpp 707 if (!strncmp(curLine, "CLASS", 5)) {
713 if (!strncmp(curLine, "METHOD", 6)) {
719 if (!strncmp(curLine, "OFFSET", 6)) {
725 if (!strncmp(curLine, "EXCLUDE", 7)) {
729 if (!strncmp(curLine, "INCLUDE", 7)) {
825 } else if (strncmp(argv[i], "-Xbootclasspath:",
838 } else if (strncmp(argv[i], "-Xbootclasspath/a:",
855 } else if (strncmp(argv[i], "-Xbootclasspath/p:",
872 } else if (strncmp(argv[i], "-D", 2) == 0) {
886 } else if (strncmp(argv[i], "-Xms", 4) == 0)
    [all...]
  /external/chromium/googleurl/src/
url_canon_stdurl.cc 126 if (!strncmp(scheme, "http", scheme_len))
130 if (!strncmp(scheme, "https", scheme_len))
134 if (!strncmp(scheme, "ftp", scheme_len))
136 else if (!strncmp(scheme, "wss", scheme_len))
140 if (!strncmp(scheme, "gopher", scheme_len))
144 if (!strncmp(scheme, "ws", scheme_len))
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dcf.c 89 if (0 == strncmp((char *)pStart, HEADER_ENCRYPTION_METHOD, HEADER_ENCRYPTION_METHOD_LEN))
93 else if (0 == strncmp((char *)pStart, HEADER_RIGHTS_ISSUER, HEADER_RIGHTS_ISSUER_LEN))
97 else if (0 == strncmp((char *)pStart, HEADER_CONTENT_NAME, HEADER_CONTENT_NAME_LEN))
101 else if (0 == strncmp((char *)pStart, HEADER_CONTENT_DESCRIPTION, HEADER_CONTENT_DESCRIPTION_LEN))
105 else if (0 == strncmp((char *)pStart, HEADER_CONTENT_VENDOR, HEADER_CONTENT_VENDOR_LEN))
109 else if (0 == strncmp((char *)pStart, HEADER_ICON_URI, HEADER_ICON_URI_LEN))
  /bionic/libc/bionic/
pututline.c 44 if (!strncmp(utmp->ut_line, u.ut_line, sizeof(u.ut_line) -1))
  /external/clang/test/Preprocessor/
c99-6_10_3_4_p6.c 15 fputs(str(strncmp("abc\0d" "abc", '\4') // this goes away
23 // CHECK: fputs("strncmp(\"abc\\0d\" \"abc\", '\\4') == 0" ": @\n", s);
  /external/libvpx/vpx_ports/
x86_cpuid.c 48 if (strncmp ((const char *)vs, cpuid_vendor_list[i].vendor_string, 12) == 0)

Completed in 8063 milliseconds

1 2 3 4 5 6 7 8 91011>>