HomeSort by relevance Sort by last modified time
    Searched refs:strncmp (Results 251 - 275 of 902) sorted by null

<<11121314151617181920>>

  /external/bluetooth/bluedroid/stack/gap/
gap_utils.c 172 if (!strncmp ((char *)p_result->devname, (char *) p->remote_bd_name, strlen ((char *) p_result->devname)))
297 if (!strncmp ((char *)devname, (char *)p_result->remote_name, BTM_MAX_REM_BD_NAME_LEN))
  /external/dropbear/
cli-kex.c 247 if (strncmp(cli_opts.remotehost, buf_getptr(line, hostlen),
260 if (strncmp(buf_getptr(line, algolen), algoname, algolen) != 0) {
common-session.c 272 if (strncmp(ses.remoteident, "SSH-2.", 6) != 0
273 && strncmp(ses.remoteident, "SSH-1.99-", 9) != 0) {
dropbearkey.c 167 if (strncmp(typetext, "rsa", 3) == 0) {
173 if (strncmp(typetext, "dss", 3) == 0) {
  /external/e2fsprogs/intl/
relocatable.c 184 if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix))
423 && strncmp (pathname, orig_prefix, orig_prefix_len) == 0)
  /external/ipsec-tools/src/racoon/
localconf.c 214 if (strncmp(buf, str, len) == 0 && buf[len] == '\0') {
222 if (strncmp(p, "0x", 2) == 0) {
  /external/openssl/crypto/
sparcv9cap.c 70 !strncmp(name,"SUNW,UltraSPARC-I",17)) /* covers II,III,IV */
81 else if (!strncmp(name,"SUNW,UltraSPARC",15))
  /external/qemu/android/
opengles.c 225 if (strncmp(vendorSrc, "Google", 6) == 0 &&
226 strncmp(rendererSrc, "Android Emulator OpenGL ES Translator", 37) == 0) {
  /external/tcpdump/
print-zephyr.c 157 if (strncmp(z.version, "ZEPH", 4))
183 if (strncmp(z.version+4, "0.2", 3)) {
  /external/v8/test/cctest/
test-utils.cc 73 CHECK_EQ(0, strncmp(buffer.start(), s, i - 1));
207 CHECK_EQ(0, strncmp("0123456789012345678901234567890123",
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 138 #define strncmp(s1,s2,nmax) VG_(strncmp) ((Char *)(s1),(Char *)(s2),nmax) macro
  /external/valgrind/main/include/
pub_tool_libcbase.h 83 && VG_(strncmp)((s1),(s2),(n))==0) ? True : False )
93 extern Int VG_(strncmp) ( const Char* s1, const Char* s2, SizeT nmax );
  /external/valgrind/main/tests/
s390x_features.c 155 if (strncmp(p, "processor", sizeof "processor" - 1 ) != 0) continue;
170 if (strncmp(mm->cpuinfo_name, model_name, len) == 0 &&
  /external/webkit/Source/WebCore/css/
makeprop.pl 53 %compare-strncmp
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 164 if (strncmp((const char *)roleParams->cRole,
170 if (strncmp((const char *)roleParams->cRole,
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 44 if (len >= keyLen + 1 && s[keyLen] == '=' && !strncmp(s, key, keyLen)) {
48 if (len == keyLen && !strncmp(s, key, keyLen)) {
  /hardware/invensense/libsensors_iio/software/core/mllite/linux/
ml_sysfs_helper.c 66 strncmp(ent->d_name, type, strlen(type)) == 0) {
71 if (strncmp(ent->d_name + strlen(type) + numstrlen,
  /ndk/sources/host-tools/make-3.81/
hash.h 144 RESULT = strncmp ((X), (Y), (N)); \
147 return strncmp ((X), (Y), (N)); \
  /system/core/charger/
charger.c 323 if (!strncmp(name, supply->name, sizeof(supply->name)))
388 if (!strncmp(msg, "ACTION=", 7)) {
391 } else if (!strncmp(msg, "DEVPATH=", 8)) {
394 } else if (!strncmp(msg, "SUBSYSTEM=", 10)) {
397 } else if (!strncmp(msg, "POWER_SUPPLY_NAME=", 18)) {
400 } else if (!strncmp(msg, "POWER_SUPPLY_ONLINE=", 20)) {
403 } else if (!strncmp(msg, "POWER_SUPPLY_TYPE=", 18)) {
444 if (!strncmp(ps_type, "Battery", 7))
  /system/core/libnetutils/
dhcp_utils.c 53 if (strncmp(interface, "p2p",3) == 0) {
115 if (gateway[0] == '\0' || strncmp(gateway, "0.0.0.0", 7) == 0) {
  /external/libpng/contrib/gregbook/
wpng.c 252 if (!strncmp(*argv, "-i", 2)) {
254 } else if (!strncmp(*argv, "-time", 3)) {
257 } else if (!strncmp(*argv, "-text", 3)) {
259 } else if (!strncmp(*argv, "-gamma", 2)) {
270 } else if (!strncmp(*argv, "-bgcolor", 4)) {
rpng2-win.c 364 if (!strncmp(*argv, "-gamma", 2)) {
372 } else if (!strncmp(*argv, "-bgcolor", 4)) {
384 } else if (!strncmp(*argv, "-bgpat", 4)) {
396 } else if (!strncmp(*argv, "-timing", 2)) {
399 } else if (!strncmp(*argv, "-nommxfilters", 7)) {
401 } else if (!strncmp(*argv, "-nommxcombine", 7)) {
403 } else if (!strncmp(*argv, "-nommxinterlace", 7)) {
    [all...]
  /external/openssl/crypto/asn1/
asn1_gen.c 365 if (!strncmp(vstart, "ASCII", 5))
367 else if (!strncmp(vstart, "UTF8", 4))
369 else if (!strncmp(vstart, "HEX", 3))
371 else if (!strncmp(vstart, "BITLIST", 3))
622 if ((len == tntmp->len) && !strncmp(tntmp->strnam, tagstr, len))
  /external/valgrind/main/memcheck/tests/
str_tester.c 361 it = "strncmp";
362 check (strncmp ("", "", 99) == 0, 1); /* Trivial case. */
363 check (strncmp ("a", "a", 99) == 0, 2); /* Identity. */
364 check (strncmp ("abc", "abc", 99) == 0, 3); /* Multicharacter. */
365 check (strncmp ("abc", "abcd", 99) < 0, 4); /* Length unequal. */
366 check (strncmp ("abcd", "abc", 99) > 0, 5);
367 check (strncmp ("abcd", "abce", 99) < 0, 6); /* Honestly unequal. */
368 check (strncmp ("abce", "abcd", 99) > 0, 7);
369 check (strncmp ("a\203", "a", 2) > 0, 8); /* Tricky if '\203' < 0 */
370 check (strncmp ("a\203", "a\003", 2) > 0, 9)
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/src/
omx_vdec.cpp     [all...]

Completed in 6666 milliseconds

<<11121314151617181920>>