Searched refs:found (Results 1 - 25 of 170) sorted by last modified time

1234567

/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_codec.cpp610 // found range
934 bool found = false; local
947 found = true;
950 if (!found) TRACE(" %*soutput: not added mixer/selector widget %"
952 return found;
999 bool found = false;
1012 found = true;
1015 if (!found) TRACE(" %*sinput: not added mixer/selector widget %"
1017 return found;
1028 bool found local
1083 bool found = false; local
[all...]
/haiku/src/preferences/screen/
H A DScreenWindow.cpp738 bool found = false; local
743 found = true;
747 if (!found) {
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp2280 bool found = false; local
2286 found = true;
2290 if (!found)
/haiku/src/system/runtime_loader/
H A Delf_load_image.cpp397 // lets make sure we found all the required sections
501 image_t* found; local
511 found = find_loaded_image_by_name(name, APP_OR_LIBRARY_TYPE);
513 if (found == NULL && type != B_APP_IMAGE && gProgramImage != NULL) {
518 found = gProgramImage;
522 if (found) {
523 atomic_add(&found->ref_count, 1);
524 *_image = found;
555 found = find_loaded_image_by_name(path, APP_OR_LIBRARY_TYPE);
556 if (found) {
[all...]
/haiku/src/apps/text_search/
H A DGrepWindow.cpp1706 int32 found = 0; local
1741 found++;
1748 result = found == folderCount;
/haiku/src/apps/terminal/
H A DTermWindow.cpp835 B_TRANSLATE("Text not found."),
858 B_TRANSLATE("Not found."), B_TRANSLATE("OK"),
1816 bool found = false; local
1827 found = true;
1831 if (!found) {
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.cpp827 TRACE(("PCI: found PCI-PCI bridge: domain %u, bus %u, dev %u, func %u\n",
1824 PCIDev *found = _FindDevice(child->child, domain, bus, device, local
1826 if (found != NULL)
1827 return found;
2328 dprintf("found an ht msi mapping at %#" B_PRIx64 "\n",
/haiku/src/system/kernel/vm/
H A Dvm.cpp1266 one is found that contains a wired range intersecting with the given
3671 bool found = false; local
3722 found = true;
3726 if (!found)
4188 // we hadn't found one between allocation ranges. this is ok.
4710 Returns an error code other than \c B_OK, if the page couldn't be found or
4717 found. It is returned in \c context.page. The address space will still be
5041 // must have found it and therefore it cannot be busy either.
5575 // Page not found in this cache -- if it is paged out, we must not try
6168 // in which address space is the address to be found
[all...]
/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 DPoseView.cpp3744 // found one and it is different from the current
5984 bool found = false; local
5990 found = true;
5995 if (!found)
10472 bool found[stringCount]; local
10473 memset(found, 0, sizeof(found));
10487 if (found[j])
10494 found[j] = true;
H A DFindPanel.cpp1756 bool found = false; local
1761 if (submenu != NULL && !found) {
1767 found = true;
1778 return found ? B_OK : B_ENTRY_NOT_FOUND;
/haiku/src/add-ons/kernel/drivers/network/ether/usb_rndis/
H A DRNDISDevice.cpp173 TRACE_ALWAYS("no read and write endpoints found\n");
620 bool found = false; local
622 for (int i = 0; i < deviceDescriptor->num_configurations && !found; i++) {
627 for (size_t j = 0; j < config->interface_count && !found; j++) {
655 found = true;
/haiku/src/preferences/filetypes/
H A DApplicationTypesWindow.cpp309 bool found = false; local
327 found = true;
332 if (!found) {
/haiku/src/add-ons/accelerants/intel_extreme/
H A DPorts.cpp235 TRACE("%s: found EDID information!\n", PortName());
241 TRACE("%s: found EDID information!\n", PortName());
248 TRACE("%s: no EDID information found.\n", PortName());
264 TRACE("%s: no DDC register found\n", PortName());
421 bool found = false; local
432 found = port == DVO_PORT_HDMIA || port == DVO_PORT_DPA;
435 found = port == DVO_PORT_HDMIB || port == DVO_PORT_DPB;
438 found = port == DVO_PORT_HDMIC || port == DVO_PORT_DPC;
441 found = port == DVO_PORT_HDMID || port == DVO_PORT_DPD;
444 found
[all...]
/haiku/src/bin/desklink/
H A Ddesklink.cpp52 int32 found = 0; local
56 while (found < count) {
61 found++;
94 int32 found = 0; local
103 found++;
105 printf("Removed %" B_PRId32 " items.\n", 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/servers/app/
H A DView.cpp384 bool found = false;
386 found |= child->MarkAt(engine, where, level + 1);
389 if (!found) {
H A DDesktop.cpp2506 bool found = false; local
2509 found = true;
2513 if (found)
3657 // we've found our target
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DKeyboardProtocolHandler.cpp108 // don't go through the emergency keys. If we also found LEDs we assume
258 // found at least one item with a keyboard usage or with
766 bool found = false; local
769 found = true;
774 if (found)
/haiku/src/system/kernel/
H A Dsem.cpp225 bool found = false; local
258 found = true;
262 if (!found)
1060 bool found = false; local
1062 while (!found) {
1075 // found one!
1078 found = true;
1083 if (!found)
/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/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/system/libnetwork/netresolv/net/
H A Dgetprotobyname_r.c68 goto found;
70 found:
H A Dgetnameinfo.c264 goto found;
268 found:
H A Dgetnetnamadr.c430 goto found;
432 found:

Completed in 176 milliseconds

1234567