Searched refs:strcasecmp (Results 1 - 25 of 255) sorted by relevance

1234567891011

/external/chromium_org/third_party/cld/base/
H A Dstring_util.h18 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/
H A Dnetperf.c141 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_nam
[all...]
H A Dnetsh.c882 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_nam
[all...]
/external/tcpdump/lbl/
H A Dos-solaris2.h30 int strcasecmp(const char *, const char *);
H A Dos-ultrix4.h39 int strcasecmp(const char *, const char *);
/external/libmtp/examples/
H A Dpathutils.c46 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 (ptyp
[all...]
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDPLog.cpp64 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 (ar
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteLog.cpp74 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 (ar
[all...]
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIXLog.cpp53 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 (ar
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DLogChannelDWARF.cpp97 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 (ar
[all...]
/external/chromium_org/net/http/
H A Dhttp_log_util.cc49 if (!base::strcasecmp(header.c_str(), "set-cookie") ||
50 !base::strcasecmp(header.c_str(), "set-cookie2") ||
51 !base::strcasecmp(header.c_str(), "cookie") ||
52 !base::strcasecmp(header.c_str(), "authorization") ||
53 !base::strcasecmp(header.c_str(), "proxy-authorization")) {
56 } else if (!base::strcasecmp(header.c_str(), "www-authenticate") ||
57 !base::strcasecmp(header.c_str(), "proxy-authenticate")) {
/external/qemu/hw/watchdog/
H A Dwatchdog.c59 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/
H A Dlldb-log.cpp119 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(ar
[all...]
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglstring.h41 #include <strings.h> // for strcasecmp
42 #define _eglstrcasecmp strcasecmp
/external/clang/test/Sema/
H A Dbuiltins-gnu-mode.c13 int strcasecmp; variable
/external/e2fsprogs/include/nonunix/
H A Dconfig.h11 #define strcasecmp _stricmp macro
/external/mesa3d/src/egl/main/
H A Deglstring.h41 #include <strings.h> // for strcasecmp
42 #define _eglstrcasecmp strcasecmp
/external/libnl/lib/route/
H A Dpktloc_syntax.y66 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/
H A Dutil.h18 extern int strcasecmp (char *s1, char *s2);
/external/libpcap/lbl/
H A Dos-ultrix4.h39 int strcasecmp(const char *, const char *);
/external/chromium_org/sdch/open-vcdiff/vsprojects/
H A Dconfig.h83 #define strcasecmp _stricmp macro
/external/e2fsprogs/intl/
H A Dos2compat.h39 #define strcasecmp stricmp macro
/external/libsepol/src/
H A Dpolcaps.c23 if (strcasecmp(polcap_names[capnum], name) == 0)
/external/libnl/src/lib/
H A Dutils.c99 if (!strcasecmp(str, "brief"))
101 else if (!strcasecmp(str, "details") || !strcasecmp(str, "detailed"))
103 else if (!strcasecmp(str, "stats"))
105 else if (!strcasecmp(str, "env"))
/external/iptables/extensions/
H A Dlibxt_RATEEST.c61 if (strcasecmp(p, "s") == 0 || strcasecmp(p, "sec")==0 ||
62 strcasecmp(p, "secs")==0)
64 else if (strcasecmp(p, "ms") == 0 || strcasecmp(p, "msec")==0 ||
65 strcasecmp(p, "msecs") == 0)
67 else if (strcasecmp(p, "us") == 0 || strcasecmp(p, "usec")==0 ||
68 strcasecmp(p, "usecs") == 0)

Completed in 731 milliseconds

1234567891011