Symbol: GetAllocationInfo
src/add-ons/kernel/file_systems/ramfs/Attribute.h
55
void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/Directory.cpp
332
Node::GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Directory.cpp
336
entry->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Directory.h
51
virtual void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/DirectoryEntryTable.h
63
void GetAllocationInfo(AllocationInfo &info)
src/add-ons/kernel/file_systems/ramfs/Entry.cpp
106
fNode->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Entry.h
49
void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/File.h
27
virtual void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/Node.cpp
331
attribute->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Node.h
105
virtual void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/NodeTable.h
53
void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/SymLink.h
24
virtual void GetAllocationInfo(AllocationInfo &info);
src/add-ons/kernel/file_systems/ramfs/Volume.cpp
692
fNodeTable->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Volume.cpp
694
fDirectoryEntryTable->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Volume.cpp
696
fRootDirectory->GetAllocationInfo(info);
src/add-ons/kernel/file_systems/ramfs/Volume.h
153
void GetAllocationInfo(AllocationInfo &info) const;
src/add-ons/kernel/file_systems/ramfs/kernel_interface.cpp
300
volume->GetAllocationInfo(*info);
src/system/kernel/slab/MemoryManager.h
57
static ObjectCache* GetAllocationInfo(void* address,
src/system/kernel/slab/allocator.cpp
263
ObjectCache* cache = MemoryManager::GetAllocationInfo(address, oldSize);