Searched refs:found (Results 1 - 25 of 170) sorted by path

1234567

/haiku/3rdparty/mmu_man/scripts/
H A Didentify_repo.sh9 # show only not found
29 found=0
35 found=1
40 if [ $found != 1 ]; then
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex603 the segment alignments to be found in the program header table,
/haiku/src/add-ons/accelerants/radeon/
H A Dmonitor_detection.c106 bool found; local
137 found = (INREG(regs, RADEON_DAC_CNTL) & RADEON_DAC_CMP_OUTPUT) != 0;
138 if (found) {
147 return found;
156 bool found; local
167 found = Radeon_DetectCRTInt(ai, true) || Radeon_DetectCRTInt(ai, false);
172 return found;
182 bool found; local
214 found = (INREG(regs, RADEON_DAC_CNTL2) & RADEON_DAC2_CMP_OUTPUT) != 0;
215 if (found)
234 bool found; local
[all...]
/haiku/src/add-ons/kernel/bus_managers/scsi/
H A Ddevice_scan.cpp163 bool found; local
191 // TBD: need better error code like "device not found"
199 found = scsi_scan_get_inquiry(worker_req, &new_inquiry_data)
208 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/add-ons/kernel/drivers/common/
H A Dconsole.cpp783 bool found = false;
793 found = true;
800 if (found) {
811 return found ? B_OK : B_ERROR;
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp181 char *found = find_string(string, cut); local
182 if (found != NULL) {
183 uint32 foundLength = strlen(found);
185 memmove(found, found + cutLength, foundLength + 1 - cutLength);
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp373 bool found = false; local
399 TRACE(("found %s descriptor\n", descriptor_type_to_string(
401 found = true;
430 TRACE(("duplicate iso9660 volume name found, using "
470 "found: 0%4x\n", ch));
480 TRACE(("duplicate joliet volume name found, using "
502 return found ? B_OK : error;
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DDirectoryCache.cpp291 bool found = false; local
296 found = true;
304 if (!found) {
H A DRPCServer.cpp445 bool found = false; local
450 found = true;
463 if (!found)
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPMailbox.cpp65 MessageEntryMap::const_iterator found = fMessageEntries.find(uid); local
66 if (found == fMessageEntries.end())
69 return found->second.flags;
76 MessageEntryMap::const_iterator found = fMessageEntries.find(uid); local
77 if (found == fMessageEntries.end())
80 return found->second.size;
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.cpp344 CommandIDMap::iterator found local
346 if (found != fOngoingCommands.end()) {
347 status_t status = found->second->HandleTagged(response);
351 fOngoingCommands.erase(found);
/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/add-ons/translators/gif/
H A DSavePalette.cpp483 bool found = false; local
491 found = true;
496 if (!found) {
514 found = true;
/haiku/src/apps/cortex/DiagramView/
H A DDiagramItemGroup.cpp132 at the given index; if none is found, this function
164 /*! This function returns the first box or endpoint found that
212 return (fLastItemUnder = 0); // no item was found!
373 bool found = false; local
379 if (index >= 0) { // the item was found
385 found = true;
399 found = true;
407 return found;
441 at the given \param index; if none is found, this function
/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/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/apps/icon-o-matic/generic/gui/
H A DNummericalTextView.cpp176 bool found = false; local
188 found = true;
193 if (found)
/haiku/src/apps/mail/
H A DPeople.cpp137 PersonMap::iterator found = fPersonMap.find(nodeRef); local
138 if (found != fPersonMap.end()) {
139 Person* person = found->second;
140 fPersonMap.erase(found);
178 StringCountMap::iterator found = fGroupMap.find(group); local
179 if (found != fGroupMap.end())
180 found->second++;
H A DQueryList.cpp162 RefMap::iterator found = fRefs.find(nodeRef); local
163 if (found != fRefs.end())
/haiku/src/apps/patchbay/
H A DPatchView.cpp92 bool found = false; local
96 for (int32 i = 0; !found && i < size; i++) {
101 found = true;
106 for (int32 i = 0; !found && i < size; i++) {
111 found = true;
116 if (!found)
167 const char* message = B_TRANSLATE("No MIDI devices found!");
216 PRINT(("PatchView::HandleMidiEvent: \"op\" field not found\n"));
226 " field not found in B_MIDI_REGISTERED event\n"));
233 " field not found i
[all...]
/haiku/src/bin/
H A Dfindpaths.cpp235 bool found = false; local
239 found = true;
245 if (!found) {
/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/bin/unzip/
H A Dprocess.c7 also may be found at: ftp://ftp.info-zip.org/pub/infozip/license.html
59 "Warning: TZ environment variable not found, cannot use UTC times!!\n";
72 static ZCONST char Far NoZipfileFound[] = "No zipfiles found.\n";
140 "error [%s]: start of central directory not found;\n\
148 End-of-central-directory signature not found. Either this file is not\n\
150 latter case the central directory and zipfile comment will be found on\n\
154 " End-of-central-directory signature not found.\n";
668 G.no_ecrec = TRUE; /* assume we found wrong file: e.g., */
766 of central directory should be. If header not found, uncompensate
897 int i, numblks, found variable
[all...]
/haiku/src/build/libbe/storage/
H A DAppFileInfo.cpp462 bool found = false; local
466 !found && types.FindString("types", i, &supportedType) == B_OK;
468 found = strcmp(supportedType, "application/octet-stream") == 0
472 return found;
486 bool found = false; local
490 !found && types.FindString("types", i, &supportedType) == B_OK;
492 found = BMimeType(supportedType).Contains(type);
495 return found;

Completed in 157 milliseconds

1234567