Searched refs:strncmp (Results 1 - 25 of 855) sorted by path

1234567891011>>

/external/aac/libSYS/src/
H A DgenericStds.cpp345 INT FDKstrncmp(const char *s1, const char *s2, const UINT size) { return strncmp(s1, s2, size); }
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp354 return strncmp( &_buffer[offset], s2._buffer, s2._length ) == 0;
/external/bison/
H A Dconfigure14412 if (strncmp (value, "((unsigned int)"/*)*/, 15) == 0
14413 || strncmp (value, "((unsigned short)"/*)*/, 17) == 0
14414 || strncmp (value, "((unsigned char)"/*)*/, 16) == 0
14415 || strncmp (value, "((int)"/*)*/, 6) == 0
14416 || strncmp (value, "((signed short)"/*)*/, 15) == 0
14417 || strncmp (value, "((signed char)"/*)*/, 14) == 0)
/external/bison/lib/
H A Dargmatch.c97 if (!strncmp (arglist[i], arg, arglen))
H A Dgetopt.c505 if (!strncmp (p->name, d->__nextchar, namelen))
908 if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar))
H A Dprogname.c61 if (base - argv0 >= 7 && strncmp (base - 7, "/.libs/", 7) == 0)
64 if (strncmp (base, "lt-", 3) == 0)
H A Dunsetenv.c74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
/external/bison/src/
H A Dfiles.c222 && (strncmp (*ext - dottablen, ".tab", dottablen) == 0
223 || strncmp (*ext - dottablen, "_tab", dottablen) == 0))
H A Dgetargs.c110 int no = strncmp (args, "no-", 3) == 0 ? 3 : 0;
/external/bluetooth/bluedroid/bta/hf_client/
H A Dbta_hf_client_at.c367 /* It will distinguish 'callheld' which could be matched by strncmp as 'call'. */
368 if (strncmp(name, bta_hf_client_indicators[i].name, bta_hf_client_indicators[i].namelen) != 0)
578 if (strncmp("\r\n"event, buf,sizeof("\r\n"event) - 1) != 0) return buf; \
584 if (strncmp("\r\n", buf, sizeof("\r\n") - 1) != 0) { \
739 if(strncmp("0",buffer, 1) == 0)
744 else if(strncmp("1x",buffer, 2) == 0)
749 else if(strncmp("1",buffer, 1) == 0)
754 else if(strncmp("2x",buffer, 2) == 0)
759 else if(strncmp("2",buffer, 1) == 0)
764 else if(strncmp("
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbluetooth.c53 #define is_profile(profile, str) ((strlen(str) == strlen(profile)) && strncmp((const char *)profile, str, strlen(str)) == 0)
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
H A Doi_string.h66 #define OI_Strncmp(s1, s2, n) strncmp((s1), (s2), (n))
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_sec.c655 (!strncmp (p_name, (char *) p_srec->orig_service_name,
657 !strncmp (p_name, (char *) p_srec->term_service_name,
/external/bluetooth/bluedroid/stack/gap/
H A Dgap_utils.c174 if (!strncmp ((char *)p_result->devname, (char *) p->remote_bd_name, strlen ((char *) p_result->devname)))
299 if (!strncmp ((char *)devname, (char *)p_result->remote_name, BTM_MAX_REM_BD_NAME_LEN))
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c352 #define is_cmd(str) ((strlen(str) == strlen(cmd)) && strncmp((const char *)&cmd, str, strlen(str)) == 0)
/external/bzip2/
H A Dbzip2.c1929 if (strncmp ( aa->name, "--", 2) == 0) {
/external/chromium_org/base/json/
H A Djson_parser.cc944 return strncmp(one, two, len) == 0;
/external/chromium_org/base/
H A Dlinux_util.cc172 if (0 == strncmp(expected_data.c_str(), syscall_data.get(),
/external/chromium_org/base/metrics/
H A Dstats_table.cc562 else if (!strncmp(row_name, name.c_str(), kMaxCounterNameLength))
/external/chromium_org/base/test/
H A Dtest_suite.cc161 return strncmp(test.name(), "MAYBE_", 6) == 0;
/external/chromium_org/base/third_party/xdg_user_dirs/
H A Dxdg_user_dir_lookup.cc101 if (strncmp (p, "XDG_", 4) != 0)
104 if (strncmp (p, type, strlen (type)) != 0)
107 if (strncmp (p, "_DIR", 4) != 0)
126 if (strncmp (p, "$HOME/", 6) == 0)
/external/chromium_org/chrome/browser/apps/
H A Dweb_view_browsertest.cc292 if (!strncmp(test_info->name(), "GeolocationAPI",
H A Dweb_view_interactive_browsertest.cc324 if (!strncmp(test_info->name(), prefix, strlen(prefix))) {
/external/chromium_org/chrome/browser/chromeos/memory/
H A Doom_priority_manager.cc281 // Prefix-match against the table above. Use strncmp to avoid allocating
284 if (!strncmp(url.spec().c_str(),
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/
H A Ddevice_id_linux.cc138 if (strncmp(prefixes[i], name, strlen(prefixes[i])) == 0)

Completed in 732 milliseconds

1234567891011>>