Searched refs:strncmp (Results 76 - 100 of 255) sorted by relevance

1234567891011

/haiku/src/preferences/filetypes/
H A DNewFileTypeWindow.cpp61 if (!strncmp(type, currentType, strlen(type)))
/haiku/src/tests/add-ons/kernel/file_systems/bfs/fragmenter/
H A Dfragmenter.cpp109 if (strncmp(patternString, "0x", 2) == 0)
/haiku/src/add-ons/kernel/file_systems/shared/
H A DQueryParserUtils.cpp78 int result = strncmp((const char*)key1, (const char*)key2,
/haiku/src/tools/fs_shell/
H A Dstring.cpp103 return strncmp(string1, string2, length);
/haiku/src/servers/syslog_daemon/
H A Dsyslog_output.cpp182 && !strncmp(buffer + headerLength, sLastMessage,
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp529 if (strncmp(res, "334", 3) != 0)
602 if (strncmp(res, "334", 3) != 0)
640 if (strncmp(res, "334", 3) != 0)
652 if (strncmp(res,"334",3) != 0)
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DTree.cpp201 && !strncmp(name, itemName, nameLen)) {
H A DDirItem.h153 if (nameLen == len && !strncmp(name, itemName, len)) {
/haiku/src/system/boot/loader/
H A Dloader.cpp61 if (strncmp(path, kSystemDirectoryPrefix, strlen(kSystemDirectoryPrefix))
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DShortDirectory.cpp103 status = strncmp(name, (char*)entry->name, entry->namelen);
H A DShortAttribute.cpp163 status = strncmp(name, PtrToOffset, *nameLength);
H A DNodeAttribute.cpp379 status = strncmp(name, PtrToOffset, *nameLength);
388 status = strncmp(name, PtrToOffset, *nameLength);
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dquery.c176 if (!strncmp(argv[1], "((name==\"*", 10)) {
/haiku/src/bin/
H A Dfstrim.cpp131 || strncmp(buffer, "\n", bufferSize) == 0)
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DDeviceList.cpp135 if (strncmp(current->name, baseName, baseNameLength) == 0)
/haiku/src/add-ons/kernel/partitioning_systems/apple/
H A Dapple.cpp82 if (!cookie && (strncmp(partition.type, "Apple_", 6)
/haiku/src/system/libnetwork/netresolv/dst/
H A Dsupport.c65 if (s > b || strncmp(*buf, str, s)) /*%< check if same */
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacclib.h245 strncmp (
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp282 strncmp(common->standard_identifier, kISO9660Signature, 5) == 0
353 return strncmp(common->standard_identifier, kISO9660Signature, 5) == 0
/haiku/src/add-ons/kernel/network/ppp/pap/
H A DProtocol.cpp356 && !strncmp(peerUsername, username, *userLength)
357 && !strncmp(peerPassword, password, *passwordLength)) {
/haiku/src/bin/cddb_lookup/
H A Dcddb_lookup.cpp198 if (strncmp(info.fsh_name, kCddaFsName, strlen(kCddaFsName)) != 0)
414 if (strncmp(path, "/dev/", 5) == 0) {
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp195 if (!strncmp(" a", output, 3)) {
198 } else if (!strncmp("up", output, 2)) {
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp355 bool isIntel = strncmp(info.eax_0.vendor_id, "GenuineIntel", 12) == 0;
356 bool isAmd = strncmp(info.eax_0.vendor_id, "AuthenticAMD", 12) == 0;
/haiku/src/bin/unzip/
H A Dzipinfo.c746 if (strncmp(G.sig, central_hdr_sig, 4)) { /* is it a CentDir entry? */
909 if (strncmp(G.sig, end_central_sig, 4)) { /* just to make sure again */
1462 if (strncmp((char *)ef_ptr, "VFAB", 4) == 0)
1464 else if (strncmp((char *)ef_ptr, "VALL", 4) == 0)
1466 else if (strncmp((char *)ef_ptr, "VFHC", 4) == 0)
1468 else if (strncmp((char *)ef_ptr, "VDAT", 4) == 0)
1470 else if (strncmp((char *)ef_ptr, "VRDT", 4) == 0)
1472 else if (strncmp((char *)ef_ptr, "VPRO", 4) == 0)
1474 else if (strncmp((char *)ef_ptr, "VKEY", 4) == 0)
1476 else if (strncmp((cha
[all...]
/haiku/src/apps/mail/
H A DMailApp.cpp186 else if (strncmp(argv[loop], "mailto:", 7) == 0)
194 if (!strncmp(++options,"subject=",8))
201 else if (strncmp(argv[loop], "ccto:", 5) == 0)
207 else if (strncmp(argv[loop], "bccto:", 6) == 0)
217 else if (strncmp(argv[loop], "enclosure:", 10) == 0)

Completed in 236 milliseconds

1234567891011