Searched refs:found (Results 26 - 50 of 170) sorted by relevance

1234567

/haiku/src/system/libroot/posix/sys/
H A Dmman.cpp66 while (const char* found = strpbrk(name, "%/")) {
68 if (found != name) {
69 if (!append_string(path, pathSize, name, found - name))
74 const char* append = (*found == '%' ? "%%" : "%s");
77 name = found + 1;
/haiku/src/kits/media/
H A DDormantNodeManager.cpp161 AddOnMap::iterator found = fAddOnMap.find(id); local
162 if (found == fAddOnMap.end()) {
168 loaded_add_on_info& info = found->second;
175 fAddOnMap.erase(found);
266 AddOnMap::iterator found = fAddOnMap.find(id); local
267 if (found == fAddOnMap.end())
270 loaded_add_on_info& info = found->second;
295 "found: %s\n", strerror(status));
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPProtocol.cpp179 WorkerMap::const_iterator found = fWorkerMap.find(&folder); local
180 if (found == fWorkerMap.end())
183 IMAPConnectionWorker* worker = found->second;
249 WorkerMap::const_iterator found = fWorkerMap.find(folder);
250 if (found == fWorkerMap.end())
253 IMAPConnectionWorker* worker = found->second;
322 FolderNodeMap::const_iterator found = fFolderNodeMap.find(directory); local
323 if (found != fFolderNodeMap.end())
324 return found->second;
H A DIMAPFolder.cpp226 UIDToFlagsMap::const_iterator found = fFlagsMap.find(uid); local
227 if (found == fFlagsMap.end())
230 return found->second;
312 // Delete all local messages that are no longer found on the server
549 // std::set<uint32>::iterator found = lastUIDs.find(uid);
550 // if (found != lastUIDs.end()) {
552 // lastUIDs.erase(found);
598 MessengerMap::iterator found = fPendingBodies.find(uid); local
599 if (found != fPendingBodies.end()) {
600 MessengerList messengers = found
614 UIDToRefMap::const_iterator found = fRefMap.find(uid); local
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DNummericalTextView.cpp176 bool found = false; local
188 found = true;
193 if (found)
/haiku/src/servers/media/
H A DAppManager.cpp123 AppMap::iterator found = fMap.find(team); local
124 if (found == fMap.end())
127 return found->second.SendMessage(message);
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dagp.c24 bool found = false; local
27 /* abort if no agp busmanager found */
43 found = true;
56 if (!found) {
60 SHOW_INFO0(1, "No AGP capable devices found.");
/haiku/src/apps/cortex/RouteApp/
H A DConnectionIO.cpp183 bool found = false; local
187 found = true;
191 if(!found) {
192 PRINT(("!!! output '%s' of node '%s' not found\n",
218 found = false;
222 found = true;
226 if(!found) {
227 PRINT(("!!! input '%s' of node '%s' not found\n",
/haiku/src/apps/processcontroller/
H A DPreferences.cpp204 bool found = FindInt32(name, &readVal) == B_OK; local
205 if (found)
208 return found;
229 bool found = FindFloat(name, &readVal) == B_OK; local
230 if (found)
233 return found;
/haiku/src/kits/storage/disk_device/
H A DDiskDeviceRoster.cpp389 - \c B_ENTRY_NOT_FOUND: A device with ID \a id could not be found.
414 - \c B_ENTRY_NOT_FOUND: A partition with ID \a id could not be found.
567 // search until an add-on has been found or the end of all directories
569 bool found = false;
590 found = true;
601 } while (error == B_OK && !found);
628 // search until an add-on has been found or the end of all directories
630 bool found = false;
650 found = true;
660 } while (error == B_OK && !found);
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/radeon_hd/
H A Ddriver.cpp743 int32 found = 0; local
745 for (int32 cookie = 0; found < MAX_CARDS;) {
764 gDeviceNames[found] = strdup(name);
765 if (gDeviceNames[found] == NULL)
768 gDeviceInfo[found] = (radeon_info*)malloc(sizeof(radeon_info));
769 if (gDeviceInfo[found] == NULL) {
770 free(gDeviceNames[found]);
776 memset(gDeviceInfo[found], 0, sizeof(radeon_info));
777 gDeviceInfo[found]->init_status = B_NO_INIT;
778 gDeviceInfo[found]
[all...]
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowSaver.cpp341 bool found; local
345 found = FindNextImage(&curRef, &imgRef, next, rewind);
346 if (found) {
349 // 2. The last file in the directory is found (for find next or find first)
350 // 3. The first file in the directory is found (for find prev)
354 found = FindNextImage(&curRef, &imgRef, next, false);
355 if (!found)
406 bool found = false; local
434 found = true;
445 found
[all...]
/haiku/src/bin/bfs_tools/
H A Dchkindex.cpp138 printf(" %7Ld files found.\n",gCount);
261 bool found = false; local
269 found = true;
273 if (!found)
295 bool found = false; local
302 found = true;
306 if (!found)
333 bool found = false,duplicates = false; local
344 found = true;
351 if (!found)
[all...]
/haiku/src/tests/add-ons/print/ppd/parser/
H A DPPDParser.cpp23 bool found; member in struct:Keyword
81 fKeywords[i].found = false;
133 fKeywords[i].found = true;
144 if (!fKeywords[i].found && IsVersionRequired(&fKeywords[i])) {
154 if (!fKeywords[i].found && IsVersionRequired(&fKeywords[i])) {
/haiku/src/preferences/filetypes/
H A DPreferredAppMenu.cpp267 bool found = false; local
272 found = true;
276 if (!found && mimeType.GetWildcardApps(&applications) == B_OK
278 found = true;
280 if (!found) {
/haiku/src/add-ons/kernel/debugger/usb_keyboard/
H A Dusb_keyboard.cpp241 bool found = false; local
244 found = true;
249 if (found)
/haiku/src/tests/kits/support/pointerlist/
H A DPointerListTest.cpp366 Item* found = (Item*)list.BinarySearch(item, Item::Compare); local
367 assert(item->Equals(found));
369 found = (Item*)list.BinarySearch(item, ::Compare, gData);
370 assert(item->Equals(found));
372 found = (Item*)list.BinarySearch(&notInListLow, Item::Compare);
373 assert(found == NULL);
375 found = (Item*)list.BinarySearch(&notInListLow, ::Compare, gData);
376 assert(found == NULL);
378 found = (Item*)list.BinarySearch(&notInListHigh, Item::Compare);
379 assert(found
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.h144 status_t AllocateTreeBlock(uint64& found,
147 status_t AllocateDataBlock(uint64& found, uint64 size,
154 status_t _Allocate(uint64& found, uint64 start,
/haiku/src/kits/network/libnetservices2/
H A DHttpTime.cpp195 bool found = false; local
201 found = true;
207 if (!found)
/haiku/src/libs/compat/freebsd_network/
H A Ddriver.c144 bool found = false;
158 TRACE(("%s, found %s at %d (%d)\n", gDriverName,
169 // We've found a driver; now try to reserve the device and store it
179 found = true;
186 if (found)
212 bool found = false;
235 TRACE(("%s, found %s at %d (%d)\n", gDriverName,
255 found = true;
263 if (found)
/haiku/src/apps/cortex/TipManager/
H A DTipManagerImpl.cpp126 // found a home; can it hold the tip?
198 // found one; erase it
306 // nothing found
443 // not found
713 "!!! _TipManagerView::removeTip(): window entry not found!\n\n"));
737 "!!! _TipManagerView::removeAll(): window entry not found!\n"));
909 pair<BView*, const tip_entry*> found = local
912 // if no tip found, or the view's no longer attached, bail:
913 if(!found.second || found
[all...]
/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/add-ons/translators/raw/
H A DLibRAW.cpp146 bool found = false ; local
147 while (!found && pos < (sz - 1)) {
153 found = true;
157 if (found) {
/haiku/src/kits/support/
H A DPointerList.cpp51 not be found in the list.
159 const void** found = lower_bound(items, end, key, comparator(this)); local
160 index = found - items;
161 if (index != numItems && Compare(key, *found) == 0) {
162 return const_cast<void*>(*found);
/haiku/src/servers/mail/
H A DMailDaemonApplication.cpp686 AccountMap::iterator found = fAccounts.find(account); local
687 if (found != fAccounts.end()) {
688 _RemoveAccount(found->second);
689 fAccounts.erase(found);
765 AccountMap::iterator found = fAccounts.find(account); local
766 if (found == fAccounts.end())
768 return found->second.inboundProtocol;
778 AccountMap::iterator found = fAccounts.find(account); local
779 if (found == fAccounts.end())
781 return found
[all...]

Completed in 456 milliseconds

1234567