Searched refs:candidate (Results 1 - 22 of 22) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DLockable.cpp57 while (LockerCandidate* candidate = fLockerCandidates.First()) {
58 fLockerCandidates.Remove(candidate);
59 candidate->Unblock(false);
84 if (LockerCandidate* candidate = fLockerCandidates.First()) {
85 fLockerCandidates.Remove(candidate);
86 fLockOwner = candidate->GetThread();
88 candidate->Unblock(true);
102 Lockable::QueueLockerCandidate(LockerCandidate* candidate) argument
104 if (!candidate)
107 fLockerCandidates.Insert(candidate);
[all...]
H A DLockable.h38 LockerCandidate* candidate);
/haiku/src/apps/haikudepot/packagemodel/
H A DDepotInfo.cpp139 PackageInfoRef candidate = *it; local
140 return (candidate.Get() != NULL
141 && candidate.Get()->Name() == packageName);
158 PackageInfoRef candidate = *it; local
159 if (candidate.Get() != NULL && candidate.Get()->Name() == packageName)
160 return candidate;
/haiku/src/servers/app/stackandtile/
H A DStacking.cpp69 SATWindow* candidate = stackAndTile->GetSATWindow(window); local
70 if (!candidate)
74 if (area->WindowList().HasItem(candidate)) {
80 if (!parent->StackWindow(candidate))
107 SATWindow* candidate = stackAndTile->GetSATWindow(window); local
108 if (!candidate)
110 if (!group->RemoveWindow(candidate, false))
190 SATWindow* candidate = stackAndTile->GetSATWindow(window); local
191 if (!candidate)
198 reply.Attach<bool>(area->WindowList().HasItem(candidate));
[all...]
/haiku/src/servers/keystore/
H A DKeyring.cpp306 BMessage candidate; local
307 if (fData.FindMessage(identifier, i, &candidate) != B_OK)
311 if (candidate.FindString("secondaryIdentifier",
318 *_foundKeyMessage = candidate;
436 BMessage candidate; local
437 if (fData.FindMessage(identifier, i, &candidate) != B_OK)
441 if (!candidate.HasSameData(keyMessage))
/haiku/src/system/kernel/
H A Dguarded_heap.cpp298 bool candidate = true; local
302 candidate = false;
307 if (!candidate)
617 for (guarded_heap_area* candidate = sGuardedHeap.areas; candidate != NULL;
618 candidate = candidate->next) {
620 if (address < candidate->base)
622 if (address >= candidate->base + candidate
[all...]
/haiku/src/servers/app/drawing/
H A DBitmapHWInterface.h44 virtual status_t ProposeMode(display_mode* candidate,
H A DBitmapHWInterface.cpp134 BitmapHWInterface::ProposeMode(display_mode* candidate, const display_mode* low, argument
H A DHWInterface.h100 virtual status_t ProposeMode(display_mode* candidate,
/haiku/src/system/libroot/posix/malloc_debug/
H A Dguarded_heap.cpp404 bool candidate = true; local
408 candidate = false;
413 if (!candidate)
828 for (guarded_heap_area* candidate = sGuardedHeap.areas; candidate != NULL;
829 candidate = candidate->next) {
831 if ((addr_t)address < candidate->base)
833 if ((addr_t)address >= candidate->base + candidate
852 guarded_heap_page& candidate = area->pages[candidateIndex]; local
[all...]
/haiku/src/servers/app/drawing/interface/virtual/
H A DViewHWInterface.h43 virtual status_t ProposeMode(display_mode* candidate,
H A DDWindowHWInterface.h48 virtual status_t ProposeMode(display_mode* candidate,
H A DViewHWInterface.cpp705 ViewHWInterface::ProposeMode(display_mode* candidate, const display_mode* low, argument
H A DDWindowHWInterface.cpp862 DWindowHWInterface::ProposeMode(display_mode* candidate, argument
/haiku/src/servers/app/
H A DView.h91 inline bool HasParent(View* candidate) const
93 return fParent == candidate
95 && fParent->HasParent(candidate));
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteHWInterface.cpp456 RemoteHWInterface::ProposeMode(display_mode* candidate, const display_mode* low, argument
460 candidate->virtual_width, candidate->virtual_height);
H A DRemoteHWInterface.h52 virtual status_t ProposeMode(display_mode* candidate,
/haiku/src/add-ons/kernel/network/stack/
H A Droutes.cpp148 net_route_private* candidate = NULL; local
172 if (candidate == NULL) {
173 TRACE(" found candidate: %s, flags %lx\n", AddressString(
175 candidate = route;
186 return candidate;
/haiku/src/servers/app/drawing/interface/local/
H A DAccelerantHWInterface.h46 virtual status_t ProposeMode(display_mode* candidate,
H A DAccelerantHWInterface.cpp886 AccelerantHWInterface::ProposeMode(display_mode* candidate, argument
889 if (candidate == NULL || _low == NULL || _high == NULL)
902 return fAccProposeDisplayMode(candidate, &low, &high);
/haiku/src/system/kernel/debug/
H A Dtracing.cpp1731 tracing_is_entry_valid(AbstractTraceEntry* candidate, bigtime_t entryTime)
1734 if (!sTracingMetaData->IsInBuffer(candidate, sizeof(*candidate)))
1746 if (abstract != candidate && abstract->Time() > entryTime)
1749 return candidate->Time() == entryTime;
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregexec.c1266 int candidate = edests->elems[i];
1267 if (!re_node_set_contains (cur_nodes, candidate))
1270 dest_node = candidate;
1277 return candidate;
1281 && push_fail_stack (fs, *pidx, candidate, nregs, regs,
1263 int candidate = edests->elems[i]; local

Completed in 297 milliseconds