Searched refs:found (Results 126 - 150 of 170) sorted by relevance

1234567

/haiku/src/kits/tracker/
H A DUtilities.cpp1663 const char* found = strcasestr(text, match); local
1664 if (found != NULL) {
1665 if (found == text)
1668 return 1.f / (found - text);
H A DPose.cpp427 bool found = false; local
445 found = true;
449 if (found && column->Editable()) {
/haiku/src/bin/rc/
H A Dparser.y841 bool found = false;
845 found = true;
850 if (!found)
854 bool found = false;
862 found = true;
867 if (!found)
/haiku/src/tests/kits/storage/
H A DResourceStringsTest.cpp127 bool found = false; local
128 while (!found && get_next_image_info(0, &cookie, &info) == B_OK) {
131 found = true;
H A DAppFileInfoTest.cpp340 bool found = false; local
342 !found && resources.GetResourceInfo(i, &typeFound, &idFound,
345 found = !strcmp(nameFound, name);
347 CHK(!found);
1412 bool found = false; local
1415 !found && apps.FindString("applications", i, &app) == B_OK;
1417 found = (app == signature);
1419 return found;
/haiku/src/tests/kits/app/broster/
H A DLaunchTesterHelper.cpp361 bool found = false; local
364 while (error == B_OK && !found) {
366 found = (error == B_OK
/haiku/src/apps/webpositive/
H A DSettingsWindow.cpp757 bool found = false; local
767 found = true;
772 if (!found)
/haiku/src/add-ons/kernel/drivers/graphics/matrox/
H A Ddriver.c61 uint32 count; /* number of devices actually found */
176 found, otherwise returns B_ERROR so the driver will be unloaded.
405 bool found = false; local
411 found = true;
415 if (found)
/haiku/src/kits/storage/disk_device/
H A DPartition.cpp1338 bool found = false; local
1341 // found partition: ask it to remove its obsolete descendants
1342 found = true;
1356 if (!found) {
/haiku/src/preferences/filetypes/
H A DApplicationTypeWindow.cpp269 bool found = false; local
273 found = true;
278 if (!found) {
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DDevice.cpp267 TRACE_ERROR("found endpoint companion descriptor "
904 bool found = false; local
912 found = true;
915 if (found)
/haiku/src/system/kernel/events/
H A Dwait_for_objects.cpp841 bool found = false;
846 found = true;
857 if (!found)
/haiku/src/servers/app/
H A DView.cpp384 bool found = false;
386 found |= child->MarkAt(engine, where, level + 1);
389 if (!found) {
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_hwmp.c412 int found = 0; local
464 found++;
502 found++;
548 found++;
568 found++;
574 if (!found) {
1574 /* found and accepted a PERR ndest element, process it... */
1623 * Propagate the PERR if we previously found it on our routing table.
1943 "%s", "already discovering queue frame until path found");
2022 "%s", "queue frame until path found");
[all...]
/haiku/src/build/libroot/
H A Dfs.cpp208 bool found = false; local
225 found = true;
232 if (!found)
311 // found a slash: decompose into dir path and leaf name
/haiku/src/apps/drivesetup/
H A DMainWindow.cpp982 bool found = false; local
986 found = true;
992 if (!found) {
993 _DisplayPartitionError(B_TRANSLATE("Disk system \"%s\" not found!"));
/haiku/src/system/boot/loader/
H A Dmenu.cpp1077 bool found = false; local
1082 found = true;
1089 if (!found) {
1264 // no boot volume found yet
1265 menu->AddItem(item = new(nothrow) MenuItem("<No boot volume found>"));
1411 = new(nothrow) MenuItem("No supported volumes found"));
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp1836 bool found = false; local
1841 found = true;
1846 if (!found)
/haiku/src/apps/text_search/
H A DGrepWindow.cpp1706 int32 found = 0; local
1741 found++;
1748 result = found == folderCount;
/haiku/src/preferences/screen/
H A DScreenWindow.cpp738 bool found = false; local
743 found = true;
747 if (!found) {
/haiku/src/apps/cortex/NodeManager/
H A DNodeManager.cpp468 // B_BAD_VALUE if no matching entry was found (and writes
492 // if no matching connection was found.
543 // no matching connection was found
680 // none found.
783 // matching group was found
804 // no group matching the name was found.
1948 // look for an existing NodeRef; if not found, create one:
1965 // " found existing ref for '%s' (%ld)\n",
2041 // source not found!
2050 // found i
2263 Connection found; local
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug.cpp590 bool found = false; local
600 found = true;
602 } while (!found);
604 // bail out, if we've found nothing or hit an empty
606 if (!found || strlen(sLineBuffer[historyLine]) == 0)
609 // found a suitable line -- replace the current buffer
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Ddir.c232 * the Unicode name. If the name is found in the directory, the corresponding
237 * found errno is ENOENT.
366 ntfs_log_debug("Entry not found - between root entries.\n");
480 ntfs_log_error("Index entry with child node found in a leaf "
505 ntfs_log_debug("Entry not found.\n");
575 /* enter into cache, even if not found */
708 * return opened inode if found in cache
754 * insert into cache if found
1065 ntfs_log_error("No file name found in inode %lld\n",
1096 * index bitmap and hand each found director
2512 BOOL found; local
[all...]
/haiku/src/apps/mail/
H A DContent.cpp630 long found = -1;
642 found = i;
651 if (found != -1) {
653 fTextView->Select(found, found + strlen(str));
2971 DSPELL(printf("\tnot found!\n"));
/haiku/src/servers/input/
H A DInputServer.cpp862 // If no mouse name is specified, use the first one found in settings
1291 bool found = false; local
1297 PRINT(("RegisterDevices found %s\n", device->name));
1298 found = true;
1303 if (!found) {
1304 PRINT(("RegisterDevices not found %s\n", device->name));
1363 // item not found

Completed in 202 milliseconds

1234567