/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/shim/ |
H A D | allocator_dispatch.h | 12 struct AllocatorDispatch { struct 13 using AllocFn = void*(const AllocatorDispatch* self, argument 16 using AllocUncheckedFn = void*(const AllocatorDispatch* self, argument 19 using AllocZeroInitializedFn = void*(const AllocatorDispatch* self, argument 23 using AllocAlignedFn = void*(const AllocatorDispatch* self, argument 27 using ReallocFn = void*(const AllocatorDispatch* self, argument 31 using FreeFn = void(const AllocatorDispatch* self, argument 36 using GetSizeEstimateFn = size_t(const AllocatorDispatch* self, argument 39 using GoodSizeFn = size_t(const AllocatorDispatch* self, argument 42 using ClaimedAddressFn = bool(const AllocatorDispatch* self, argument [all …]
|
H A D | allocator_shim_default_dispatch_to_partition_alloc.cc | 204 void* PartitionMalloc(const AllocatorDispatch*, size_t size, void* context) { in PartitionMalloc() 209 void* PartitionMallocUnchecked(const AllocatorDispatch*, in PartitionMallocUnchecked() 218 void* PartitionCalloc(const AllocatorDispatch*, in PartitionCalloc() 230 void* PartitionMemalign(const AllocatorDispatch*, in PartitionMemalign() 285 void* PartitionRealloc(const AllocatorDispatch*, in PartitionRealloc() 311 void PartitionFree(const AllocatorDispatch*, void* object, void* context) { in PartitionFree() 351 void PartitionFreeDefiniteSize(const AllocatorDispatch*, in PartitionFreeDefiniteSize() 363 size_t PartitionGetSizeEstimate(const AllocatorDispatch*, in PartitionGetSizeEstimate() 396 size_t PartitionGoodSize(const AllocatorDispatch*, size_t size, void* context) { in PartitionGoodSize() 400 bool PartitionClaimedAddress(const AllocatorDispatch*, in PartitionClaimedAddress() [all …]
|
H A D | allocator_shim_default_dispatch_to_glibc.cc | 36 void* GlibcMalloc(const AllocatorDispatch*, size_t size, void* context) { in GlibcMalloc() 46 void* GlibcUncheckedMalloc(const AllocatorDispatch*, in GlibcUncheckedMalloc() 56 void* GlibcCalloc(const AllocatorDispatch*, in GlibcCalloc() 68 void* GlibcRealloc(const AllocatorDispatch*, in GlibcRealloc() 79 void* GlibcMemalign(const AllocatorDispatch*, in GlibcMemalign() 90 void GlibcFree(const AllocatorDispatch*, void* address, void* context) { in GlibcFree() 95 size_t GlibcGetSizeEstimate(const AllocatorDispatch*, in GlibcGetSizeEstimate()
|
H A D | allocator_shim_default_dispatch_to_apple_zoned_malloc.cc | 14 void* MallocImpl(const AllocatorDispatch*, size_t size, void* context) { in MallocImpl() 20 void* CallocImpl(const AllocatorDispatch*, in CallocImpl() 29 void* MemalignImpl(const AllocatorDispatch*, in MemalignImpl() 38 void* ReallocImpl(const AllocatorDispatch*, in ReallocImpl() 47 void FreeImpl(const AllocatorDispatch*, void* ptr, void* context) { in FreeImpl() 52 size_t GetSizeEstimateImpl(const AllocatorDispatch*, void* ptr, void* context) { in GetSizeEstimateImpl() 57 size_t GoodSizeImpl(const AllocatorDispatch*, size_t size, void* context) { in GoodSizeImpl() 66 bool ClaimedAddressImpl(const AllocatorDispatch*, void* ptr, void* context) { in ClaimedAddressImpl()
|
H A D | allocator_shim_default_dispatch_to_linker_wrapped_symbols.cc | 32 void* RealMalloc(const AllocatorDispatch*, size_t size, void* context) { in RealMalloc() 36 void* RealCalloc(const AllocatorDispatch*, in RealCalloc() 43 void* RealRealloc(const AllocatorDispatch*, in RealRealloc() 50 void* RealMemalign(const AllocatorDispatch*, in RealMemalign() 57 void RealFree(const AllocatorDispatch*, void* address, void* context) { in RealFree() 61 size_t RealSizeEstimate(const AllocatorDispatch*, in RealSizeEstimate()
|
H A D | allocator_shim_default_dispatch_to_winheap.cc | 16 void* DefaultWinHeapMallocImpl(const AllocatorDispatch*, in DefaultWinHeapMallocImpl() 54 void DefaultWinHeapFreeImpl(const AllocatorDispatch*, in DefaultWinHeapFreeImpl() 60 size_t DefaultWinHeapGetSizeEstimateImpl(const AllocatorDispatch*, in DefaultWinHeapGetSizeEstimateImpl() 66 void* DefaultWinHeapAlignedMallocImpl(const AllocatorDispatch*, in DefaultWinHeapAlignedMallocImpl() 73 void* DefaultWinHeapAlignedReallocImpl(const AllocatorDispatch*, in DefaultWinHeapAlignedReallocImpl() 81 void DefaultWinHeapAlignedFreeImpl(const AllocatorDispatch*, in DefaultWinHeapAlignedFreeImpl()
|
/aosp_15_r20/external/libchrome/base/allocator/ |
H A D | allocator_shim.h | 48 struct AllocatorDispatch { struct 49 using AllocFn = void*(const AllocatorDispatch* self, argument 52 using AllocZeroInitializedFn = void*(const AllocatorDispatch* self, argument 56 using AllocAlignedFn = void*(const AllocatorDispatch* self, argument 60 using ReallocFn = void*(const AllocatorDispatch* self, argument 64 using FreeFn = void(const AllocatorDispatch* self, argument 71 using GetSizeEstimateFn = size_t(const AllocatorDispatch* self, argument 74 using BatchMallocFn = unsigned(const AllocatorDispatch* self, argument 79 using BatchFreeFn = void(const AllocatorDispatch* self, argument 83 using FreeDefiniteSizeFn = void(const AllocatorDispatch* self, argument [all …]
|
H A D | allocator_shim_default_dispatch_to_glibc.cc | 25 void* GlibcMalloc(const AllocatorDispatch*, size_t size, void* context) { in GlibcMalloc() 29 void* GlibcCalloc(const AllocatorDispatch*, in GlibcCalloc() 36 void* GlibcRealloc(const AllocatorDispatch*, in GlibcRealloc() 43 void* GlibcMemalign(const AllocatorDispatch*, in GlibcMemalign() 50 void GlibcFree(const AllocatorDispatch*, void* address, void* context) { in GlibcFree() 54 size_t GlibcGetSizeEstimate(const AllocatorDispatch*, in GlibcGetSizeEstimate()
|
H A D | allocator_shim_default_dispatch_to_linker_wrapped_symbols.cc | 38 void* RealMalloc(const AllocatorDispatch*, size_t size, void* context) { in RealMalloc() 42 void* RealCalloc(const AllocatorDispatch*, in RealCalloc() 49 void* RealRealloc(const AllocatorDispatch*, in RealRealloc() 56 void* RealMemalign(const AllocatorDispatch*, in RealMemalign() 63 void RealFree(const AllocatorDispatch*, void* address, void* context) { in RealFree() 71 size_t RealSizeEstimate(const AllocatorDispatch*, in RealSizeEstimate()
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/gensrcs/external/libchrome/base/allocator/ |
D | allocator_shim.h | 51 struct AllocatorDispatch { struct 52 using AllocFn = void*(const AllocatorDispatch* self, argument 55 using AllocZeroInitializedFn = void*(const AllocatorDispatch* self, argument 59 using AllocAlignedFn = void*(const AllocatorDispatch* self, argument 63 using ReallocFn = void*(const AllocatorDispatch* self, argument 67 using FreeFn = void(const AllocatorDispatch* self, argument 74 using GetSizeEstimateFn = size_t(const AllocatorDispatch* self, argument 77 using BatchMallocFn = unsigned(const AllocatorDispatch* self, argument 82 using BatchFreeFn = void(const AllocatorDispatch* self, argument 86 using FreeDefiniteSizeFn = void(const AllocatorDispatch* self, argument [all …]
|
/aosp_15_r20/out/soong/.intermediates/external/libchrome/libchrome-include/gen/0/external/libchrome/base/allocator/ |
D | allocator_shim.h | 51 struct AllocatorDispatch { struct 52 using AllocFn = void*(const AllocatorDispatch* self, argument 55 using AllocZeroInitializedFn = void*(const AllocatorDispatch* self, argument 59 using AllocAlignedFn = void*(const AllocatorDispatch* self, argument 63 using ReallocFn = void*(const AllocatorDispatch* self, argument 67 using FreeFn = void(const AllocatorDispatch* self, argument 74 using GetSizeEstimateFn = size_t(const AllocatorDispatch* self, argument 77 using BatchMallocFn = unsigned(const AllocatorDispatch* self, argument 82 using BatchFreeFn = void(const AllocatorDispatch* self, argument 86 using FreeDefiniteSizeFn = void(const AllocatorDispatch* self, argument [all …]
|
/aosp_15_r20/external/cronet/base/debug/ |
H A D | stack_trace_unittest.cc | 175 void* BadMalloc(const allocator_shim::AllocatorDispatch*, size_t, void*) { in BadMalloc() 179 void* BadCalloc(const allocator_shim::AllocatorDispatch*, in BadCalloc() 186 void* BadAlignedAlloc(const allocator_shim::AllocatorDispatch*, in BadAlignedAlloc() 193 void* BadAlignedRealloc(const allocator_shim::AllocatorDispatch*, in BadAlignedRealloc() 201 void* BadRealloc(const allocator_shim::AllocatorDispatch*, in BadRealloc() 208 void BadFree(const allocator_shim::AllocatorDispatch*, void*, void*) { in BadFree()
|
/aosp_15_r20/external/libchrome/base/debug/ |
H A D | thread_heap_usage_tracker_unittest.cc | 35 using AllocatorDispatch = base::allocator::AllocatorDispatch; typedef in base::debug::__anon98eefb720111::ThreadHeapUsageTrackerTest
|