Symbol: _Allocate
headers/os/support/String.h
381
static char* _Allocate(int32 length);
headers/private/kernel/util/AVLTreeMap.h
378
Node* userNode = _Allocate(key, value);
headers/private/kernel/util/AVLTreeMap.h
404
Node* userNode = _Allocate(key, value);
headers/private/kernel/util/AVLTreeMap.h
99
inline Node* _Allocate(const Key& key, const Value& value);
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
663
status = _Allocate(found, start, fVolume->BlockSize(),
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.cpp
697
return _Allocate(found, start, size, BTRFS_EXTENT_FLAG_DATA);
src/add-ons/kernel/file_systems/btrfs/ExtentAllocator.h
154
status_t _Allocate(uint64& found, uint64 start,
src/add-ons/kernel/file_systems/ext2/InodeAllocator.cpp
54
return _Allocate(transaction, preferredBlockGroup, S_ISDIR(mode), id);
src/add-ons/kernel/file_systems/ext2/InodeAllocator.h
32
status_t _Allocate(Transaction& transaction,
src/kits/support/String.cpp
2298
newData = _Allocate(length);
src/kits/support/String.cpp
2384
char* newData = _Allocate(length);
src/kits/support/String.cpp
2599
char* newData = _Allocate(newLength);
src/kits/support/String.cpp
2686
char* newData = _Allocate(newLength);
src/system/kernel/cache/block_cache.cpp
548
_Allocate(fCurrent, block->current_data);
src/system/kernel/cache/block_cache.cpp
549
_Allocate(fParent, block->parent_data);
src/system/kernel/cache/block_cache.cpp
550
_Allocate(fOriginal, block->original_data);
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
179
status_t error = _Allocate(baseHint, fTotalBlocks, count, transaction,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
187
error = _Allocate(0, baseHint, count, transaction, &_allocatedBase,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.cpp
206
status_t error = _Allocate(base, fTotalBlocks, count, transaction, NULL,
src/tests/system/kernel/file_corruption/fs/BlockAllocator.h
41
status_t _Allocate(uint64 base, uint64 searchEnd,