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

1234567

/haiku/src/libs/libtelnet/
H A Dgenget.c81 char **c, **found; local
87 found = 0;
93 if (found)
95 found = c;
97 return(found);
/haiku/src/bin/
H A Dprintenv.c56 bool found = false; local
63 found = true;
67 return (found ? 0 : 1);
/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/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/kernel/file_systems/btrfs/
H A DExtentAllocator.cpp92 CachedExtent* found = Find(offset); local
93 while (found != NULL && (found->flags != type || found->length < size))
94 found = Next(found);
96 if (found == NULL)
98 *chosen = found;
165 CachedExtent* found = Find(node->offset);
166 if (found
610 _Allocate(uint64& found, uint64 start, uint64 size, uint64 type) argument
647 AllocateTreeBlock(uint64& found, uint64 start, uint64 flags) argument
678 AllocateDataBlock(uint64& found, uint64 size, uint64 start, uint64 flags) argument
[all...]
/haiku/src/tests/add-ons/kernel/partitioning_systems/
H A DPartitioningSystemsTest.cpp209 DiskDeviceMap::iterator found = sDiskDevices.find(partitionID); local
210 if (found == sDiskDevices.end())
213 return found->second;
220 PartitionMap::iterator found = sPartitions.find(partitionID); local
221 if (found == sPartitions.end())
224 return found->second;
231 PartitionMap::iterator found = sPartitions.find(partitionID); local
232 if (found == sPartitions.end())
235 return found->second->parent;
242 PartitionMap::iterator found local
266 PartitionMap::iterator found = sPartitions.find(partitionID); local
307 PartitionMap::iterator found = sPartitions.find(partitionID); local
[all...]
/haiku/src/add-ons/input_server/devices/keyboard/
H A DTeamListItem.h42 void SetFound(bool found) { fFound = found; } argument
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetprotobyname_r.c68 goto found;
70 found:
/haiku/src/kits/media/
H A DTimeSourceObjectManager.cpp73 NodeMap::iterator found = fMap.find(node.node); local
74 if (found != fMap.end())
75 return dynamic_cast<BTimeSource*>(found->second->Acquire());
/haiku/src/apps/processcontroller/
H A DPriorityMenu.cpp65 long found = false; local
71 if (!found && fPriority < priority->priority) {
87 found = true, item->SetMarked(true);
H A DQuitMenu.cpp60 bool found = false; local
61 for (int a = 0; !found && (tmid = (team_id)(addr_t)apps.ItemAt(a)) != 0; a++)
63 found = true;
64 if (!found)
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfirewire_module.cpp145 int i, found; local
169 for (i = 0, found = 0; (status = gPci->get_nth_pci_info(i, info)) == B_OK; i++) {
175 pciInfo[found] = info;
183 gFwohci_softc[found] = fwohci_sc;
192 gFirewire_softc[found] = fw_sc;
193 if (found < MAX_CARDS - 1)
194 gFirewire_softc[found + 1] = NULL;
196 found++;
201 if (found == MAX_CARDS)
206 TRACE("found
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Ddriver.cpp371 int32 found = 0; local
373 for (int32 cookie = 0; found < MAX_CARDS;) {
392 gDeviceNames[found] = strdup(name);
393 if (gDeviceNames[found] == NULL)
396 gDeviceInfo[found] = (intel_info*)malloc(sizeof(intel_info));
397 if (gDeviceInfo[found] == NULL) {
398 free(gDeviceNames[found]);
404 memset(gDeviceInfo[found], 0, sizeof(intel_info));
405 gDeviceInfo[found]->init_status = B_NO_INIT;
406 gDeviceInfo[found]
[all...]
/haiku/src/tests/kits/app/broster/testapps/
H A DRosterBroadcastTestApp1.cpp50 bool found = false; local
53 while (error == B_OK && !found) {
55 found = (error == B_OK && !strcmp("AppLooperPort", info.name));
73 bool found = false; local
75 while (!found && get_next_image_info(0, &cookie, &info) == B_OK) {
79 found = true;
83 if (error == B_OK && !found)
H A DRosterLaunchTestApp1.cpp50 bool found = false; local
53 while (error == B_OK && !found) {
55 found = (error == B_OK && !strcmp("AppLooperPort", info.name));
73 bool found = false; local
75 while (!found && get_next_image_info(0, &cookie, &info) == B_OK) {
79 found = true;
83 if (error == B_OK && !found)
H A DRosterWatchingTestApp1.cpp50 bool found = false; local
53 while (error == B_OK && !found) {
55 found = (error == B_OK && !strcmp("AppLooperPort", info.name));
73 bool found = false; local
75 while (!found && get_next_image_info(0, &cookie, &info) == B_OK) {
79 found = true;
83 if (error == B_OK && !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++;
/haiku/src/servers/media/
H A DMediaFilesManager.cpp192 TypeMap::iterator found = fMap.find(BString(type)); local
193 if (found == fMap.end()) {
198 ItemMap& itemMap = found->second;
297 TypeMap::iterator found = fMap.find(type); local
298 if (found == fMap.end())
301 ItemMap& itemMap = found->second;
315 TypeMap::iterator found = fMap.find(type); local
316 if (found == fMap.end())
319 found->second.erase(item);
320 if (found
377 TypeMap::iterator found = fMap.find(type); local
406 TypeMap::iterator found = fMap.find(type); local
[all...]
H A DNodeManager.cpp170 NodeMap::iterator found = fNodeMap.find(node.node_id); local
171 if (found != fNodeMap.end())
206 NodeMap::iterator found = fNodeMap.find(id); local
207 if (found == fNodeMap.end()) {
213 registered_node& node = found->second;
234 fNodeMap.erase(found);
251 NodeMap::iterator found = fNodeMap.find(id); local
252 if (found == fNodeMap.end()) {
254 "found\n", id);
258 registered_node& node = found
318 NodeMap::iterator found = fNodeMap.find(id); local
351 NodeMap::iterator found = fNodeMap.find(id); local
386 NodeMap::iterator found = fNodeMap.find(id); local
469 NodeMap::iterator found = fNodeMap.find(node.node); local
497 NodeMap::iterator found = fNodeMap.find(node.node); local
568 NodeMap::iterator found = fNodeMap.find(node.node); local
608 NodeMap::iterator found = fNodeMap.find(node.node); local
688 bool found = false; local
705 bool found = false; local
801 PathMap::iterator found = fPathMap.find(addOnID); local
1057 bool found = false; local
1071 bool found = false; local
1122 NodeMap::iterator found = fNodeMap.find(node); local
1357 NodeMap::iterator found = fNodeMap.find(id); local
[all...]
/haiku/src/kits/tracker/
H A DSettings.cpp130 bool found = false; local
138 found = true;
141 ASSERT(found);
153 bool found = false;
161 found = true;
165 if (!found)
/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/kits/debugger/debug_info/
H A DImageDebugLoadingStateHandlerRoster.cpp114 bool found = false; local
117 if ((found = handler->SupportsState(state)))
121 if (!found)
/haiku/src/apps/debugger/user_interface/cli/commands/
H A DCliPrintVariableCommand.cpp78 bool found = false; local
84 found = true;
94 if (!found)
96 found = false;
/haiku/src/kits/interface/textview_support/
H A DWidthBuffer.cpp148 // We've found some characters which aren't yet in the hash table.
179 the index of the table, if found, or -1, if not.
241 uint32 found; local
242 while ((found = widths[hashed].code) != kInvalidCode) {
243 if (found == value)
250 if (found == kInvalidCode)
312 uint32 found; local
313 while ((found = widths[hashed].code) != kInvalidCode) {
314 if (found == value)
320 if (found
[all...]
/haiku/src/system/libroot/posix/sys/
H A Dpriority.c103 bool found = false; local
116 found = true;
136 found = true;
161 found = true;
171 if (!found)

Completed in 181 milliseconds

1234567