Searched refs:Lookup (Results 1 - 25 of 169) sorted by relevance

1234567

/haiku/src/add-ons/kernel/file_systems/xfs/
H A DDirectory.h23 virtual status_t Lookup(const char* name, size_t length,
H A DAttribute.h36 virtual status_t Lookup(const char* name, size_t* nameLength) = 0;
H A DNodeAttribute.h29 status_t Lookup(const char* name, size_t* nameLength);
H A DShortAttribute.cpp48 status = Lookup(name, &length);
78 status_t status = Lookup(fName, &namelength);
103 status_t status = Lookup(fName, &namelength);
153 ShortAttribute::Lookup(const char* name, size_t* nameLength) function in class:ShortAttribute
155 TRACE("Short Attribute : Lookup\n");
H A DShortAttribute.h40 status_t Lookup(const char* name, size_t* nameLength);
/haiku/src/apps/debuganalyzer/gui/
H A DSubWindowManager.cpp40 if (fSubWindows.Lookup(*window->GetSubWindowKey()) != NULL)
61 return fSubWindows.Lookup(key);
/haiku/src/servers/package/
H A DVolumeState.h51 return fPackagesByFileName.Lookup(name);
58 return fPackagesByNodeRef.Lookup(nodeRef);
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DDirectoryIterator.h33 status_t Lookup(const char* name, size_t nameLength, ino_t* _id);
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DRevokeManager.h23 virtual bool Lookup(uint32 block, uint32 commitID) = 0;
H A DHashRevokeManager.cpp65 RevokeElement* element = fHash->Lookup(block);
90 RevokeElement* element = fHash->Lookup(block);
96 // Can't fail as we just did a sucessful Lookup()
104 HashRevokeManager::Lookup(uint32 block, uint32 commitID) function in class:HashRevokeManager
106 RevokeElement* element = fHash->Lookup(block);
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixAddressManager.h68 UnixEndpoint* Lookup(const UnixAddress& address) const function in class:UnixAddressManager
70 return fBoundEndpoints.Lookup(address);
95 if (Lookup(address) == NULL)
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DNodeTable.cpp33 if (fNodes.Lookup(node->GetID()) != NULL)
55 if (Node *element = fNodes.Lookup(id))
66 Node *node = fNodes.Lookup(id);
/haiku/src/tests/system/kernel/util/
H A DBOpenHashTableTest.cpp88 "BOpenHashTable::Lookup test",
229 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), &entry);
240 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), &entry);
243 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), NULL);
255 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), &entry);
258 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), NULL);
281 CPPUNIT_ASSERT_EQUAL(table.Lookup(123), &entry1);
282 CPPUNIT_ASSERT_EQUAL(table.Lookup(456), &entry2);
283 CPPUNIT_ASSERT_EQUAL(table.Lookup(789), NULL);
295 CPPUNIT_ASSERT_EQUAL(table.Lookup(12
[all...]
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewStateHistory.cpp145 StateEntry* stateEntry = fStates->Lookup(Key(threadID, functionID));
151 StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
159 StateEntry* stateEntry = fStates->Lookup(Key(-1, functionID));
169 StateEntry* defaultEntry = fStates->Lookup(Key(-1, functionID));
184 threadEntry = fStates->Lookup(Key(threadID, functionID));
/haiku/src/kits/debugger/model/
H A DStackFrameValues.cpp134 ValueEntry* entry = fValues->Lookup(
148 return fValues->Lookup(Key(variable, (TypeComponentPath*)path)) != NULL;
156 ValueEntry* entry = fValues->Lookup(Key(variable, path));
H A DExpressionValues.cpp144 ValueEntry* entry = fValues->Lookup(Key(function, thread, *expression));
157 return fValues->Lookup(Key(function, thread, *expression)) != NULL;
165 ValueEntry* entry = fValues->Lookup(Key(function, thread, expression));
H A DStackFrameValueInfos.cpp136 InfoEntry* entry = fValues->Lookup(
159 return fValues->Lookup(Key(variable, (TypeComponentPath*)path)) != NULL;
167 InfoEntry* entry = fValues->Lookup(Key(variable, path));
/haiku/src/kits/package/hpkg/
H A DStrings.cpp56 CachedString* string = Lookup(value);
/haiku/src/bin/cddb_lookup/
H A Dcddb_lookup.cpp36 status_t Lookup(CDDBServer& server, const char* path,
38 status_t Lookup(CDDBServer& server, const dev_t device,
92 Lookup(server, volume.Device(), dumpOnly, verbose);
98 CDDBLookup::Lookup(CDDBServer& server, const char* path, bool dumpOnly, function in class:CDDBLookup
109 return Lookup(server, volume.Device(), dumpOnly, verbose);
117 CDDBLookup::Lookup(CDDBServer& server, const dev_t device, bool dumpOnly, function in class:CDDBLookup
408 // Lookup via actual CD
415 status = cddb.Lookup(server, path, dump, verbose);
419 status = cddb.Lookup(server, device, dump, verbose);
/haiku/src/kits/debugger/dwarf/
H A DAbbreviationTable.cpp69 AbbreviationTableEntry* tableEntry = fEntryTable.Lookup(code);
120 if (fEntryTable.Lookup(code) == NULL) {
/haiku/src/kits/debugger/debug_info/
H A DGlobalTypeLookup.cpp157 TypeEntry* typeEntry = fTypesByName->Lookup(name);
187 TypeEntry* typeEntry = fTypesByID->Lookup(id);
198 if (fTypesByID->Lookup(id) != NULL
199 || (name.Length() > 0 && fTypesByID->Lookup(name) != NULL)) {
219 if (TypeEntry* typeEntry = fTypesByID->Lookup(type->ID())) {
/haiku/src/kits/debugger/debug_managers/
H A DTeamMemoryBlockManager.cpp126 MemoryBlockEntry* entry = fActiveBlocks->Lookup(address);
180 MemoryBlockEntry* entry = fActiveBlocks->Lookup(address);
193 MemoryBlockEntry* entry = fActiveBlocks->Lookup(address);
/haiku/src/system/kernel/
H A DTeamThreadTables.h91 Element* Lookup(id_type id, bool visibleOnly = true) const function in struct:BKernel::TeamThreadTable
93 Element* element = fTable.Lookup(id);
/haiku/src/system/boot/loader/
H A DFileMapDisk.cpp158 dirnode = volume->Lookup(FMAP_FOLDER_NAME, true);
162 node = dir->Lookup(FMAP_IMAGE_NAME, true);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DDirectoryIterator.h48 status_t Lookup(const char* name, size_t nameLength,

Completed in 202 milliseconds

1234567