Searched refs:foundItem (Results 1 – 6 of 6) sorted by relevance
/haiku/headers/private/shared/ |
H A D | usb-utils.h | 19 USB_CLASSCODETABLE *foundItem = NULL; in usb_get_class_info() local 24 foundItem = &UsbClassCodeTable[i]; in usb_get_class_info() 29 if (foundItem) { in usb_get_class_info() 30 snprintf(classInfo, size, "%s (%s%s%s)", foundItem->BaseDesc, foundItem->SubDesc, in usb_get_class_info() 31 (foundItem->ProtocolDesc && strcmp("", foundItem->ProtocolDesc)) ? ", " : "", in usb_get_class_info() 32 foundItem->ProtocolDesc); in usb_get_class_info()
|
H A D | pci-utils.h | 17 PCI_CLASSCODETABLE *foundItem = NULL; in get_class_info() local 22 foundItem = &PciClassCodeTable[i]; in get_class_info() 27 if (foundItem) { in get_class_info() 29 snprintf(classInfo, size, "%s (%s%s%s)", foundItem->BaseDesc, foundItem->SubDesc, in get_class_info() 30 (foundItem->ProgDesc && strcmp("", foundItem->ProgDesc)) ? ", " : "", foundItem->ProgDesc); in get_class_info() 32 snprintf(classInfo, size, "%s", foundItem->BaseDesc); in get_class_info()
|
/haiku/src/add-ons/kernel/file_systems/reiserfs/ |
H A D | Tree.cpp | 167 DirItem *foundItem, int32 *entryIndex) in FindDirEntry() argument 169 status_t error = (name && foundItem && entryIndex ? InitCheck() in FindDirEntry() 172 error = FindDirEntry(dirID, objectID, name, strlen(name), foundItem, in FindDirEntry() 181 size_t nameLen, DirItem *foundItem, int32 *entryIndex) in FindDirEntry() argument 183 status_t error = (name && foundItem && entryIndex ? InitCheck() in FindDirEntry() 203 *foundItem = dirItem; in FindDirEntry() 222 *foundItem = dirItem; in FindDirEntry()
|
H A D | Iterators.cpp | 889 ObjectItemIterator::GetNext(Item *foundItem) in GetNext() argument 892 status_t error = (foundItem ? InitCheck() : B_BAD_VALUE); in GetNext() 912 *foundItem = item; in GetNext() 938 ObjectItemIterator::GetNext(Item *foundItem, uint32 type) in GetNext() argument 942 error = GetNext(foundItem); in GetNext() 943 } while (error == B_OK && foundItem->GetType() != type); in GetNext() 955 ObjectItemIterator::GetPrevious(Item *foundItem) in GetPrevious() argument 958 status_t error = (foundItem ? InitCheck() : B_BAD_VALUE); in GetPrevious() 978 *foundItem = item; in GetPrevious() 1004 ObjectItemIterator::GetPrevious(Item *foundItem, uint32 type) in GetPrevious() argument [all …]
|
H A D | Iterators.h | 166 status_t GetNext(Item *foundItem); 167 status_t GetNext(Item *foundItem, uint32 type); 168 status_t GetPrevious(Item *foundItem); 169 status_t GetPrevious(Item *foundItem, uint32 type); 200 status_t GetNext(DirItem *foundItem, int32 *entryIndex, 202 status_t GetPrevious(DirItem *foundItem, int32 *entryIndex,
|
H A D | Tree.h | 57 DirItem *foundItem, int32 *entryIndex); 59 size_t nameLen, DirItem *foundItem,
|