Home
last modified time | relevance | path

Searched defs:AllocatorDispatch (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/allocator/
Dallocator_shim.h48 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 …]
Dallocator_shim_default_dispatch_to_glibc.cc25 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()
Dallocator_shim_default_dispatch_to_linker_wrapped_symbols.cc38 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()