Home
last modified time | relevance | path

Searched refs:fAllocator (Results 1 – 9 of 9) sorted by relevance

/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlockAllocator.h79 fAllocator(allocator), in AllocatedBlock()
88 fAllocator->Free(fIndex, 1, fTransaction); in ~AllocatedBlock()
99 status_t error = fAllocator->Allocate(0, 1, fTransaction, fIndex,
114 BlockAllocator* fAllocator;
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DStack.cpp26 fAllocator(NULL), in Stack()
51 fAllocator = new(std::nothrow) PhysicalMemoryAllocator("USB Stack Allocator", in Stack()
53 if (!fAllocator || fAllocator->InitCheck() < B_OK) { in Stack()
55 delete fAllocator; in Stack()
56 fAllocator = NULL; in Stack()
84 delete fAllocator; in ~Stack()
296 return fAllocator->Allocate(size, logicalAddress, physicalAddress); in AllocateChunk()
304 return fAllocator->Deallocate(size, logicalAddress, physicalAddress); in FreeChunk()
H A Dusb_private.h192 PhysicalMemoryAllocator * fAllocator; variable
/haiku/src/apps/resedit/
H A DResourceRoster.cpp44 create_editor * fAllocator; member in EditorInfo
51 fAllocator(allocator) in EditorInfo()
64 return fAllocator(); in Instantiate()
/haiku/src/tools/fs_shell/
H A DOpenHashTable.h119 fAllocator(allocator), in BOpenHashTable()
128 fAllocator.Free(fTable); in ~BOpenHashTable()
339 fAllocator.Free(allocation);
437 = (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize); in _Resize()
463 fAllocator.Free(fTable);
491 Allocator fAllocator; variable
/haiku/headers/private/kernel/util/
H A DOpenHashTable.h119 fAllocator(allocator), in BOpenHashTable()
128 fAllocator.Free(fTable); in ~BOpenHashTable()
339 fAllocator.Free(allocation);
437 = (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize); in _Resize()
463 fAllocator.Free(fTable);
491 Allocator fAllocator; variable
H A DAVLTreeMap.h614 Node* result = fAllocator.Allocate(); in Allocate()
616 fAllocator.Construct(result, key, value); in Allocate()
622 fAllocator.Destruct(node); in Free()
623 fAllocator.Deallocate(node); in Free()
658 Allocator<Node> fAllocator; variable
/haiku/src/servers/app/
H A DClientMemoryAllocator.cpp319 fAllocator(NULL), in ClientMemory()
327 if (fAllocator != NULL) { in ~ClientMemory()
329 fAllocator->Free(fBlock); in ~ClientMemory()
330 fAllocator.Unset(); in ~ClientMemory()
339 fAllocator.SetTo(allocator, false); in Allocate()
341 return fAllocator->Allocate(size, &fBlock, newArea); in Allocate()
H A DClientMemoryAllocator.h87 fAllocator;