HomeSort by relevance Sort by last modified time
    Searched full:strncasecmp (Results 1 - 25 of 678) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/musl-locale/
strncasecmp_l.c 6 return strncasecmp(l, r, n);
  /external/e2fsprogs/include/nonunix/
config.h 12 #define strncasecmp _strnicmp macro
  /external/clang/test/Sema/
builtins-gnu-mode.c 14 int strncasecmp; variable
  /external/lldb/source/
lldb-log.cpp 121 else if (0 == ::strncasecmp(arg, "break", 5)) flag_bits &= ~LIBLLDB_LOG_BREAKPOINTS;
125 else if (0 == ::strncasecmp(arg, "event", 5)) flag_bits &= ~LIBLLDB_LOG_EVENTS;
126 else if (0 == ::strncasecmp(arg, "expr", 4)) flag_bits &= ~LIBLLDB_LOG_EXPRESSIONS;
127 else if (0 == ::strncasecmp(arg, "object", 6)) flag_bits &= ~LIBLLDB_LOG_OBJECT;
135 else if (0 == ::strncasecmp(arg, "watch", 5)) flag_bits &= ~LIBLLDB_LOG_WATCHPOINTS;
136 else if (0 == ::strncasecmp(arg, "temp", 4)) flag_bits &= ~LIBLLDB_LOG_TEMPORARY;
137 else if (0 == ::strncasecmp(arg, "comm", 4)) flag_bits &= ~LIBLLDB_LOG_COMMUNICATION;
138 else if (0 == ::strncasecmp(arg, "conn", 4)) flag_bits &= ~LIBLLDB_LOG_CONNECTION;
139 else if (0 == ::strncasecmp(arg, "host", 4)) flag_bits &= ~LIBLLDB_LOG_HOST;
140 else if (0 == ::strncasecmp(arg, "unwind", 6)) flag_bits &= ~LIBLLDB_LOG_UNWIND
    [all...]
  /external/chromium_org/base/strings/
string_util_posix.h 27 inline int strncasecmp(const char* string1, const char* string2, size_t count) { function in namespace:base
28 return ::strncasecmp(string1, string2, count);
string_util_win.h 27 inline int strncasecmp(const char* s1, const char* s2, size_t count) { function in namespace:base
  /frameworks/av/media/libstagefright/
DataSource.cpp 195 bool isWidevine = !strncasecmp("widevine://", uri, 11);
198 if (!strncasecmp("file://", uri, 7)) {
200 } else if (!strncasecmp("http://", uri, 7)
201 || !strncasecmp("https://", uri, 8)
255 } else if (!strncasecmp("data:", uri, 5)) {
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDPLog.cpp 66 else if (::strncasecmp (arg, "break", 5) == 0 ) flag_bits &= ~KDP_LOG_BREAKPOINTS;
67 else if (::strncasecmp (arg, "comm", 4) == 0 ) flag_bits &= ~KDP_LOG_COMM;
77 else if (::strncasecmp (arg, "watch", 5) == 0 ) flag_bits &= ~KDP_LOG_WATCHPOINTS;
122 else if (::strncasecmp (arg, "break", 5) == 0 ) flag_bits |= KDP_LOG_BREAKPOINTS;
123 else if (::strncasecmp (arg, "comm", 4) == 0 ) flag_bits |= KDP_LOG_COMM;
133 else if (::strncasecmp (arg, "watch", 5) == 0 ) flag_bits |= KDP_LOG_WATCHPOINTS;
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemoteLog.cpp 76 else if (::strncasecmp (arg, "break", 5) == 0 ) flag_bits &= ~GDBR_LOG_BREAKPOINTS;
77 else if (::strncasecmp (arg, "comm", 4) == 0 ) flag_bits &= ~GDBR_LOG_COMM;
87 else if (::strncasecmp (arg, "watch", 5) == 0 ) flag_bits &= ~GDBR_LOG_WATCHPOINTS;
133 else if (::strncasecmp (arg, "break", 5) == 0 ) flag_bits |= GDBR_LOG_BREAKPOINTS;
134 else if (::strncasecmp (arg, "comm", 4) == 0 ) flag_bits |= GDBR_LOG_COMM;
144 else if (::strncasecmp (arg, "watch", 5) == 0 ) flag_bits |= GDBR_LOG_WATCHPOINTS;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_common.h 53 /* for some reason strdup, strcasecmp and strncasecmp does not get
57 extern int strncasecmp(const char *, const char *, size_t);
  /external/iptables/extensions/
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...]
dscp_helper.c 55 if (!strncasecmp(name, ds_classes[i].name,
libipt_REJECT.c 101 if (strncasecmp(reject_table[i].name,
103 strncasecmp(reject_table[i].alias,
109 if (strncasecmp("echo-reply", cb->arg, strlen(cb->arg)) == 0 ||
110 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)
libip6t_REJECT.c 86 if (strncasecmp(reject_table[i].name,
88 strncasecmp(reject_table[i].alias,
  /external/clang/test/SemaCXX/
warn-memsize-comparison.cpp 10 extern "C" int strncasecmp(const char *s1, const char *s2, size_t n);
49 if (strncasecmp(b1, b2, sizeof(b1) >= 0)) {} // \
50 expected-warning{{size argument in 'strncasecmp' call is a comparison}} \
53 if (strncasecmp(b1, b2, sizeof(b1)) >= 0) {}
  /external/e2fsprogs/intl/
os2compat.h 40 #define strncasecmp strnicmp macro
  /external/e2fsprogs/lib/e2p/
hashstr.c 59 if (strncasecmp(string, "HASHALG_", 8))
  /external/ppp/pppd/plugins/pppoatm/
misc.c 34 !strncasecmp(*pos,value,len)) {
  /external/libsepol/src/
genusers.c 71 if (strncasecmp(p, "user", 4))
130 if (strncasecmp(p, "roles", 5))
193 if (strncasecmp(p, "level", 5))
203 while (*p && strncasecmp(p, "range", 5))
240 if (strncasecmp(p, "range", 5))
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.cpp 217 if (!strncasecmp("http://", url, 7)
218 || !strncasecmp("https://", url, 8)
219 || !strncasecmp("file://", url, 7)) {
234 if (!strncasecmp("rtsp://", url, 7)) {
277 if (!strncasecmp(url + start, FILE_EXTS[i], len)) {
  /external/chromium_org/third_party/webrtc/modules/audio_device/
audio_device_utility.cc 56 #include <string.h> // strncasecmp
107 return (strncasecmp(str1, str2, length) == 0)?true: false;
  /external/bison/lib/
c-strncasecmp.c 1 /* c-strncasecmp.c -- case insensitive string comparator in C locale
  /external/wpa_supplicant_8/hs20/server/www/
add-mo.php 21 if (strlen($user) < 1 || strncasecmp($user, "cert-", 5) == 0) {
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
media_path_filter.cc 128 if ((base::strncasecmp(base_name.c_str(),
131 (base::strncasecmp(base_name.c_str(),
134 (base::strncasecmp(base_name.c_str(),

Completed in 955 milliseconds

1 2 3 4 5 6 7 8 91011>>