Symbol: Allocate
headers/private/kernel/util/AVLTreeMap.h
475
return fStrategy.Allocate(key, value);
headers/private/kernel/util/AVLTreeMap.h
612
inline Node* Allocate(const Key& key, const Value& value)
headers/private/kernel/util/AVLTreeMap.h
614
Node* result = fAllocator.Allocate();
headers/private/kernel/util/MallocFreeAllocator.h
19
Pointer Allocate() {
headers/private/util/BumpAllocator.h
42
void* Allocate(size_t _size)
headers/private/util/OpenHashTable.h
437
= (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize);
headers/private/util/OpenHashTable.h
62
void* Allocate(size_t size) const
headers/private/util/SimpleAllocator.h
231
void* Allocate(uint32 size)
headers/private/util/SimpleAllocator.h
290
void* newBuffer = Allocate(newSize);
src/add-ons/kernel/bus_managers/usb/PhysicalMemoryAllocator.h
27
status_t Allocate(size_t size,
src/add-ons/kernel/bus_managers/usb/Stack.cpp
296
return fAllocator->Allocate(size, logicalAddress, physicalAddress);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
1283
status = cachedDuplicate.Allocate(transaction,
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
1347
status = cachedDuplicate.Allocate(transaction, &newDuplicate,
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
1371
status = cachedDuplicate.Allocate(transaction, &fragment, &offset);
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
1778
status_t status = cachedNewRoot.Allocate(transaction, &root,
src/add-ons/kernel/file_systems/bfs/BPlusTree.cpp
1794
status_t status = cachedOther.Allocate(transaction, &other,
src/add-ons/kernel/file_systems/bfs/BPlusTree.h
225
status_t Allocate(Transaction& transaction,
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1029
if (fGroups[bestGroup].Allocate(transaction, bestStart, bestLength) != B_OK)
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1054
T(Allocate(run));
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1166
status_t status = group.Allocate(transaction, run.Start(), run.Length());
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
1613
if (Allocate* entry = dynamic_cast<Allocate*>(_entry)) {
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
174
inline void Allocate(uint16 start, uint16 numBlocks);
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
202
status_t Allocate(Transaction& transaction, uint16 start, int32 length);
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
455
cached.Allocate(start, numBlocks);
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
626
if (fGroups[i].Allocate(transaction, 0, reservedBlocksInGroup) < B_OK) {
src/add-ons/kernel/file_systems/bfs/BlockAllocator.cpp
736
if (groups[0].Allocate(transaction, 0, reservedBlocks) != B_OK) {
src/add-ons/kernel/file_systems/bfs/BlockAllocator.h
42
status_t Allocate(Transaction& transaction, Inode* inode,
src/add-ons/kernel/file_systems/bfs/Inode.cpp
1700
status_t status = fVolume->Allocate(transaction, this, length, run,
src/add-ons/kernel/file_systems/bfs/Inode.cpp
2066
status_t status = fVolume->Allocate(transaction, this, blocksRequested,
src/add-ons/kernel/file_systems/bfs/Volume.h
112
status_t Allocate(Transaction& transaction, Inode* inode,
src/add-ons/kernel/file_systems/bfs/Volume.h
222
return fBlockAllocator.Allocate(transaction, inode, numBlocks, run,
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
41
status_t Allocate(Transaction& transaction, fsblock_t start,
src/add-ons/kernel/file_systems/ext2/BlockAllocator.cpp
714
status_t status = fGroups[bestGroup].Allocate(transaction, bestStart,
src/add-ons/kernel/file_systems/ext2/BlockAllocator.h
33
status_t Allocate(Transaction& transaction, Inode* inode,
src/add-ons/kernel/file_systems/packagefs/util/TwoKeyAVLTree.h
194
inline Node* Allocate(const Key& key, const Value& value) const
src/add-ons/kernel/file_systems/ramfs/TwoKeyAVLTree.h
150
inline Node* Allocate(const Key& key, const Value& value) const
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEVolume.cpp
2433
status_t error = cookie->Allocate(listSize);
src/add-ons/kernel/file_systems/userlandfs/server/fuse/FUSEVolume.cpp
2543
error = cookie->Allocate(attrSize);
src/add-ons/translators/ico/ICO.cpp
288
uint8 *xorData = (uint8 *)xorAllocator.Allocate(xorDataSize);
src/add-ons/translators/ico/ICO.cpp
295
andData = (uint8 *)andAllocator.Allocate(andDataSize);
src/add-ons/translators/ico/ICO.cpp
300
rgba32_color *outRowData = (rgba32_color *)rowAllocator.Allocate(outRowBytes);
src/add-ons/translators/ico/ICO.cpp
395
uint8 *xorRowData = (uint8 *)xorAllocator.Allocate(xorRowBytes);
src/add-ons/translators/ico/ICO.cpp
399
uint8 *andRowData = (uint8 *)andAllocator.Allocate(andRowBytes);
src/add-ons/translators/ico/ICO.cpp
694
uint8 *bitsData = (uint8 *)dataAllocator.Allocate(bitsHeader.rowBytes * height);
src/add-ons/translators/pcx/PCX.cpp
89
uint8 *palette = (uint8 *)paletteAllocator.Allocate(3 * 256);
src/add-ons/translators/pcx/PCX.cpp
94
scanLineData[row] = (uint8 *)scanLineAllocator.Allocate(scanLineLength);
src/add-ons/translators/stxt/STXTTranslator.cpp
557
encodingBuffer.Allocate(READ_BUFFER_SIZE * 4);
src/kits/package/hpkg/ReaderImplBase.cpp
126
AttributeHandler* handler = (AttributeHandler*)context->handlersAllocator.Allocate(size);
src/servers/app/BitmapManager.cpp
128
clientData = (overlay_client_data*)bitmap->fClientMemory.Allocate(
src/servers/app/BitmapManager.cpp
146
buffer = (uint8*)bitmap->fClientMemory.Allocate(allocator,
src/servers/app/ClientMemoryAllocator.cpp
334
return fAllocator->Allocate(size, &fBlock);
src/servers/app/ClientMemoryAllocator.h
43
void* Allocate(size_t size, block** _address);
src/servers/app/ClientMemoryAllocator.h
77
void* Allocate(ClientMemoryAllocator* allocator,
src/servers/print/PrintServerApp.cpp
203
Resource* resource = fResourceManager.Allocate(transport.String(),
src/servers/print/ResourceManager.h
48
Resource* Allocate(const char* transport, const char* address, const char* connection);
src/system/boot/loader/heap.cpp
139
if (allocation->Allocate(size) != B_OK) {
src/system/boot/loader/heap.cpp
236
void* allocated = sAllocator.Allocate(size);
src/system/kernel/cache/block_cache.cpp
1754
block->current_data = Allocate();
src/system/kernel/cache/block_cache.cpp
2343
block->original_data = cache->Allocate();
src/system/kernel/cache/block_cache.cpp
2361
block->parent_data = cache->Allocate();
src/system/kernel/cache/block_cache.cpp
257
void* Allocate();
src/system/kernel/cache/block_cache.cpp
342
status_t Allocate();
src/system/kernel/cache/block_cache.cpp
3981
block->compare = cache->Allocate();
src/system/kernel/cache/block_cache.cpp
4071
status_t status = blockPrefetcher->Allocate();
src/system/kernel/debug/debug_heap.cpp
277
return sCurrentPool->Allocate(size);
src/system/kernel/debug/debug_heap.cpp
62
= (DebugAllocPool*)Allocate(sizeof(DebugAllocPool));
src/system/kernel/debug/guarded_heap.cpp
161
void* meta = heap.meta_allocator.Allocate(size);
src/system/kernel/debug/heap.cpp
1575
T(Allocate((addr_t)address, size));
src/system/kernel/debug/heap.cpp
220
Allocate(addr_t address, size_t size)
src/system/kernel/scheduler/scheduling_analysis.cpp
305
void* memory = Allocate(sizeof(Thread));
src/system/kernel/scheduler/scheduling_analysis.cpp
326
void* memory = Allocate(sizeof(WaitObject));
src/system/kernel/scheduler/scheduling_analysis.cpp
402
void* memory = Allocate(sizeof(ThreadWaitObject));
src/system/kernel/scheduler/scheduling_analysis.cpp
443
= (scheduling_analysis_thread**)Allocate(
src/system/kernel/slab/HashedObjectCache.cpp
116
if (MemoryManager::Allocate(this, flags, pages) == B_OK
src/system/kernel/slab/HashedObjectCache.h
82
void* Allocate(size_t size) const
src/system/kernel/slab/MemoryManager.cpp
559
T(Allocate(cache, flags));
src/system/kernel/slab/MemoryManager.cpp
85
Allocate(ObjectCache* cache, uint32 flags)
src/system/kernel/slab/MemoryManager.h
47
static status_t Allocate(ObjectCache* cache, uint32 flags,
src/system/kernel/slab/SmallObjectCache.cpp
76
status_t error = MemoryManager::Allocate(this, flags, pages);
src/system/runtime_loader/heap.cpp
116
void* allocated = sAllocator.Allocate(size);
src/system/runtime_loader/heap.cpp
122
allocated = sAllocator.Allocate(size);
src/tests/system/boot/heap/heap_replay_test.cpp
23
return sAllocator.Allocate(bytes);
src/tests/system/boot/heap/heap_test.cpp
54
return sAllocator.Allocate(bytes);
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
28
status_t Allocate(uint64 baseHint, uint64 count,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
96
status_t Allocate(uint64 baseHint = 0)
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
99
status_t error = fAllocator->Allocate(0, 1, fTransaction, fIndex,
src/tests/system/kernel/file_corruption/fs/Directory.cpp
1362
status_t error = allocatedBlock.Allocate(fDirectory->BlockIndex());
src/tests/system/kernel/file_corruption/fs/Directory.cpp
1415
status_t error = allocatedBlock.Allocate(fDirectory->BlockIndex());
src/tests/system/kernel/file_corruption/fs/File.cpp
628
status_t error = allocatedBlock.Allocate(BlockIndex());
src/tests/system/kernel/file_corruption/fs/File.cpp
679
status_t error = allocatedBlock.Allocate(BlockIndex());
src/tests/system/kernel/file_corruption/fs/Volume.cpp
493
status_t error = allocatedBlock.Allocate();
src/tools/fs_shell/OpenHashTable.h
437
= (ValueType**)fAllocator.Allocate(sizeof(ValueType*) * newSize);
src/tools/fs_shell/OpenHashTable.h
62
void* Allocate(size_t size) const
src/tools/fs_shell/block_cache.cpp
126
void* Allocate();
src/tools/fs_shell/block_cache.cpp
1721
block->compare = cache->Allocate();
src/tools/fs_shell/block_cache.cpp
569
block->current_data = Allocate();
src/tools/fs_shell/block_cache.cpp
847
block->original_data = cache->Allocate();
src/tools/fs_shell/block_cache.cpp
858
block->parent_data = cache->Allocate();