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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/cld/base/
string_util.h 18 inline int strcasecmp(const char* s1, const char* s2) { function in namespace:base
22 inline int strcasecmp(const char* s1, const char* s2) {
23 return ::strcasecmp(s1, s2);
  /external/netperf/
netperf.c 141 if (strcasecmp(test_name,"TCP_STREAM") == 0) {
144 else if (strcasecmp(test_name,"TCP_MAERTS") == 0) {
148 else if (strcasecmp(test_name,"EXS_TCP_STREAM") == 0) {
153 else if (strcasecmp(test_name,"TCP_SENDFILE") == 0) {
157 else if (strcasecmp(test_name,"TCP_RR") == 0) {
160 else if (strcasecmp(test_name,"TCP_CRR") == 0) {
163 else if (strcasecmp(test_name,"TCP_CC") == 0) {
167 else if (strcasecmp(test_name,"TCP_TRR") == 0) {
172 else if (strcasecmp(test_name,"TCP_NBRR") == 0) {
176 else if (strcasecmp(test_name,"UDP_STREAM") == 0)
    [all...]
netsh.c 882 if ((strcasecmp(test_name,"TCP_STREAM") == 0) ||
884 (strcasecmp(test_name,"EXS_TCP_STREAM") == 0) ||
887 (strcasecmp(test_name,"TCP_SENDFILE") == 0) ||
889 (strcasecmp(test_name,"TCP_MAERTS") == 0) ||
890 (strcasecmp(test_name,"TCP_RR") == 0) ||
891 (strcasecmp(test_name,"TCP_CRR") == 0) ||
892 (strcasecmp(test_name,"TCP_CC") == 0) ||
894 (strcasecmp(test_name,"TCP_TRR") == 0) ||
897 (strcasecmp(test_name,"TCP_TRR") == 0) ||
899 (strcasecmp(test_name,"UDP_STREAM") == 0) |
    [all...]
  /external/tcpdump/lbl/
os-solaris2.h 30 int strcasecmp(const char *, const char *);
os-ultrix4.h 39 int strcasecmp(const char *, const char *);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderHost.cpp 38 if (strcasecmp(mimeType, "video/wmv") == 0 ||
39 strcasecmp(mimeType, "video/vc1") == 0 ||
40 strcasecmp(mimeType, "video/x-ms-wmv") == 0) {
43 } else if (strcasecmp(mimeType, "video/avc") == 0 ||
44 strcasecmp(mimeType, "video/h264") == 0) {
47 } else if (strcasecmp(mimeType, "video/mp4v-es") == 0 ||
48 strcasecmp(mimeType, "video/mpeg4") == 0 ||
49 strcasecmp(mimeType, "video/h263") == 0 ||
50 strcasecmp(mimeType, "video/3gpp") == 0) {
55 else if (strcasecmp(mimeType, "video/avc-secure") == 0)
    [all...]
  /external/libmtp/examples/
pathutils.c 46 if (strcasecmp (path, current) == 0) {
78 if (strcasecmp (file->filename, path) == 0) {
99 if (strcasecmp (file->filename, filename) == 0) {
148 if (!strcasecmp (ptype, "wav")) {
150 } else if (!strcasecmp (ptype, "mp3")) {
152 } else if (!strcasecmp (ptype, "wma")) {
154 } else if (!strcasecmp (ptype, "ogg")) {
156 } else if (!strcasecmp (ptype, "mp4")) {
158 } else if (!strcasecmp (ptype, "wmv")) {
160 } else if (!strcasecmp (ptype, "avi"))
    [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderHost.cpp 45 if (strcasecmp(mimeType, "video/avc") == 0 ||
46 strcasecmp(mimeType, "video/h264") == 0) {
49 } else if (strcasecmp(mimeType, "video/h263") == 0) {
56 } else if (strcasecmp(mimeType, "video/mpeg4") == 0 ||
57 strcasecmp(mimeType, "video/mp4v-es") == 0) {
64 } else if (strcasecmp(mimeType, "video/x-vnd.on2.vp8") == 0) {
  /external/chromium_org/net/http/
http_log_util.cc 40 if (!base::strcasecmp(header.c_str(), "proxy-authorization") ||
41 !base::strcasecmp(header.c_str(), "proxy-authenticate")) {
54 if (!base::strcasecmp(header.c_str(), "set-cookie") ||
55 !base::strcasecmp(header.c_str(), "set-cookie2") ||
56 !base::strcasecmp(header.c_str(), "cookie") ||
57 !base::strcasecmp(header.c_str(), "authorization") ||
58 !base::strcasecmp(header.c_str(), "proxy-authorization")) {
61 } else if (!base::strcasecmp(header.c_str(), "www-authenticate") ||
62 !base::strcasecmp(header.c_str(), "proxy-authenticate")) {
  /ndk/sources/android/support/src/musl-locale/
strcasecmp_l.c 6 return strcasecmp(l, r);
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDPLog.cpp 64 if (::strcasecmp (arg, "all") == 0 ) flag_bits &= ~KDP_LOG_ALL;
65 else if (::strcasecmp (arg, "async") == 0 ) flag_bits &= ~KDP_LOG_ASYNC;
68 else if (::strcasecmp (arg, "default") == 0 ) flag_bits &= ~KDP_LOG_DEFAULT;
69 else if (::strcasecmp (arg, "packets") == 0 ) flag_bits &= ~KDP_LOG_PACKETS;
70 else if (::strcasecmp (arg, "memory") == 0 ) flag_bits &= ~KDP_LOG_MEMORY;
71 else if (::strcasecmp (arg, "data-short") == 0 ) flag_bits &= ~KDP_LOG_MEMORY_DATA_SHORT;
72 else if (::strcasecmp (arg, "data-long") == 0 ) flag_bits &= ~KDP_LOG_MEMORY_DATA_LONG;
73 else if (::strcasecmp (arg, "process") == 0 ) flag_bits &= ~KDP_LOG_PROCESS;
74 else if (::strcasecmp (arg, "step") == 0 ) flag_bits &= ~KDP_LOG_STEP;
75 else if (::strcasecmp (arg, "thread") == 0 ) flag_bits &= ~KDP_LOG_THREAD
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemoteLog.cpp 74 if (::strcasecmp (arg, "all") == 0 ) flag_bits &= ~GDBR_LOG_ALL;
75 else if (::strcasecmp (arg, "async") == 0 ) flag_bits &= ~GDBR_LOG_ASYNC;
78 else if (::strcasecmp (arg, "default") == 0 ) flag_bits &= ~GDBR_LOG_DEFAULT;
79 else if (::strcasecmp (arg, "packets") == 0 ) flag_bits &= ~GDBR_LOG_PACKETS;
80 else if (::strcasecmp (arg, "memory") == 0 ) flag_bits &= ~GDBR_LOG_MEMORY;
81 else if (::strcasecmp (arg, "data-short") == 0 ) flag_bits &= ~GDBR_LOG_MEMORY_DATA_SHORT;
82 else if (::strcasecmp (arg, "data-long") == 0 ) flag_bits &= ~GDBR_LOG_MEMORY_DATA_LONG;
83 else if (::strcasecmp (arg, "process") == 0 ) flag_bits &= ~GDBR_LOG_PROCESS;
84 else if (::strcasecmp (arg, "step") == 0 ) flag_bits &= ~GDBR_LOG_STEP;
85 else if (::strcasecmp (arg, "thread") == 0 ) flag_bits &= ~GDBR_LOG_THREAD
    [all...]
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIXLog.cpp 53 if (::strcasecmp (arg, "all") == 0 ) return POSIX_LOG_ALL;
54 else if (::strcasecmp (arg, "async") == 0 ) return POSIX_LOG_ASYNC;
57 else if (::strcasecmp (arg, "default") == 0 ) return POSIX_LOG_DEFAULT;
58 else if (::strcasecmp (arg, "packets") == 0 ) return POSIX_LOG_PACKETS;
59 else if (::strcasecmp (arg, "memory") == 0 ) return POSIX_LOG_MEMORY;
60 else if (::strcasecmp (arg, "data-short") == 0 ) return POSIX_LOG_MEMORY_DATA_SHORT;
61 else if (::strcasecmp (arg, "data-long") == 0 ) return POSIX_LOG_MEMORY_DATA_LONG;
62 else if (::strcasecmp (arg, "process") == 0 ) return POSIX_LOG_PROCESS;
63 else if (::strcasecmp (arg, "ptrace") == 0 ) return POSIX_LOG_PTRACE;
64 else if (::strcasecmp (arg, "registers") == 0 ) return POSIX_LOG_REGISTERS
    [all...]
  /frameworks/av/media/libstagefright/
MediaExtractor.cpp 94 if (!strcasecmp(mime, MEDIA_MIMETYPE_CONTAINER_MPEG4)
95 || !strcasecmp(mime, "audio/mp4")) {
97 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_MPEG)) {
99 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_NB)
100 || !strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_AMR_WB)) {
102 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_FLAC)) {
104 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_CONTAINER_WAV)) {
106 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_CONTAINER_OGG)) {
108 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_CONTAINER_MATROSKA)) {
110 } else if (!strcasecmp(mime, MEDIA_MIMETYPE_CONTAINER_MPEG2TS))
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
LogChannelDWARF.cpp 97 if (::strcasecmp (arg, "all") == 0) flag_bits &= ~DWARF_LOG_ALL;
98 else if (::strcasecmp (arg, "info") == 0) flag_bits &= ~DWARF_LOG_DEBUG_INFO;
99 else if (::strcasecmp (arg, "line") == 0) flag_bits &= ~DWARF_LOG_DEBUG_LINE;
100 else if (::strcasecmp (arg, "pubnames") == 0) flag_bits &= ~DWARF_LOG_DEBUG_PUBNAMES;
101 else if (::strcasecmp (arg, "pubtypes") == 0) flag_bits &= ~DWARF_LOG_DEBUG_PUBTYPES;
102 else if (::strcasecmp (arg, "aranges") == 0) flag_bits &= ~DWARF_LOG_DEBUG_ARANGES;
103 else if (::strcasecmp (arg, "lookups") == 0) flag_bits &= ~DWARF_LOG_LOOKUPS;
104 else if (::strcasecmp (arg, "map") == 0) flag_bits &= ~DWARF_LOG_DEBUG_MAP;
105 else if (::strcasecmp (arg, "default") == 0) flag_bits &= ~DWARF_LOG_DEFAULT;
145 if (::strcasecmp (arg, "all") == 0) flag_bits |= DWARF_LOG_ALL
    [all...]
  /external/qemu/hw/watchdog/
watchdog.c 59 if (strcasecmp(model->wdt_name, p) == 0) {
75 if (strcasecmp(p, "reset") == 0)
77 else if (strcasecmp(p, "shutdown") == 0)
79 else if (strcasecmp(p, "poweroff") == 0)
81 else if (strcasecmp(p, "pause") == 0)
83 else if (strcasecmp(p, "debug") == 0)
85 else if (strcasecmp(p, "none") == 0)
  /external/lldb/source/
lldb-log.cpp 119 if (0 == ::strcasecmp(arg, "all")) flag_bits &= ~LIBLLDB_LOG_ALL;
120 else if (0 == ::strcasecmp(arg, "api")) flag_bits &= ~LIBLLDB_LOG_API;
122 else if (0 == ::strcasecmp(arg, "commands")) flag_bits &= ~LIBLLDB_LOG_COMMANDS;
123 else if (0 == ::strcasecmp(arg, "default")) flag_bits &= ~LIBLLDB_LOG_DEFAULT;
124 else if (0 == ::strcasecmp(arg, "dyld")) flag_bits &= ~LIBLLDB_LOG_DYNAMIC_LOADER;
128 else if (0 == ::strcasecmp(arg, "process")) flag_bits &= ~LIBLLDB_LOG_PROCESS;
129 else if (0 == ::strcasecmp(arg, "script")) flag_bits &= ~LIBLLDB_LOG_SCRIPT;
130 else if (0 == ::strcasecmp(arg, "state")) flag_bits &= ~LIBLLDB_LOG_STATE;
131 else if (0 == ::strcasecmp(arg, "step")) flag_bits &= ~LIBLLDB_LOG_STEP;
132 else if (0 == ::strcasecmp(arg, "thread")) flag_bits &= ~LIBLLDB_LOG_THREAD
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglstring.h 41 #include <strings.h> // for strcasecmp
42 #define _eglstrcasecmp strcasecmp
  /external/clang/test/Sema/
builtins-gnu-mode.c 13 int strcasecmp; variable
  /external/e2fsprogs/include/nonunix/
config.h 11 #define strcasecmp _stricmp macro
  /external/mesa3d/src/egl/main/
eglstring.h 41 #include <strings.h> // for strcasecmp
42 #define _eglstrcasecmp strcasecmp
  /system/core/toolbox/
setsebool.c 20 if (!strcmp(value, "1") || !strcasecmp(value, "true") || !strcasecmp(value, "on"))
22 else if (!strcmp(value, "0") || !strcasecmp(value, "false") || !strcasecmp(value, "off"))
  /external/libnl/lib/route/
pktloc_syntax.y 66 if (!strcasecmp($2, "u8"))
68 else if (!strcasecmp($2, "h8")) {
71 } else if (!strcasecmp($2, "u16"))
73 else if (!strcasecmp($2, "h16")) {
76 } else if (!strcasecmp($2, "u32"))
78 else if (!strcasecmp($2, "h32")) {
  /external/e2fsprogs/misc/
util.h 18 extern int strcasecmp (char *s1, char *s2);
  /external/libpcap/lbl/
os-ultrix4.h 39 int strcasecmp(const char *, const char *);

Completed in 401 milliseconds

1 2 3 4 5 6 7 8 91011>>