Home
last modified time | relevance | path

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

/external/libchrome/base/allocator/
Dallocator_shim.h47 struct AllocatorDispatch { struct
48 using AllocFn = void*(const AllocatorDispatch* self, size_t size); argument
49 using AllocZeroInitializedFn = void*(const AllocatorDispatch* self, argument
52 using AllocAlignedFn = void*(const AllocatorDispatch* self, argument
55 using ReallocFn = void*(const AllocatorDispatch* self, argument
58 using FreeFn = void(const AllocatorDispatch* self, void* address); argument
66 const AllocatorDispatch* next; argument
71 static const AllocatorDispatch default_dispatch; argument
Dallocator_shim_default_dispatch_to_linker_wrapped_symbols.cc28 void* RealMalloc(const AllocatorDispatch*, size_t size) { in RealMalloc()
32 void* RealCalloc(const AllocatorDispatch*, size_t n, size_t size) { in RealCalloc()
36 void* RealRealloc(const AllocatorDispatch*, void* address, size_t size) { in RealRealloc()
40 void* RealMemalign(const AllocatorDispatch*, size_t alignment, size_t size) { in RealMemalign()
44 void RealFree(const AllocatorDispatch*, void* address) { in RealFree()
Dallocator_shim_default_dispatch_to_glibc.cc23 void* GlibcMalloc(const AllocatorDispatch*, size_t size) { in GlibcMalloc()
27 void* GlibcCalloc(const AllocatorDispatch*, size_t n, size_t size) { in GlibcCalloc()
31 void* GlibcRealloc(const AllocatorDispatch*, void* address, size_t size) { in GlibcRealloc()
35 void* GlibcMemalign(const AllocatorDispatch*, size_t alignment, size_t size) { in GlibcMemalign()
39 void GlibcFree(const AllocatorDispatch*, void* address) { in GlibcFree()