Home
last modified time | relevance | path

Searched refs:malloc_shared_library_handler (Results 1 – 1 of 1) sorted by relevance

/third_party/musl/porting/linux/user/src/hook/
Dmusl_preinit.c175 static bool init_malloc_function(void* malloc_shared_library_handler, MallocMallocType* func, const… in init_malloc_function() argument
179 *func = (MallocMallocType)(dlsym(malloc_shared_library_handler, symbol)); in init_malloc_function()
186 static bool init_free_function(void* malloc_shared_library_handler, MallocFreeType* func, const cha… in init_free_function() argument
190 *func = (MallocFreeType)(dlsym(malloc_shared_library_handler, symbol)); in init_free_function()
197 static bool init_mmap_function(void* malloc_shared_library_handler, MallocMmapType* func, const cha… in init_mmap_function() argument
201 *func = (MallocMmapType)(dlsym(malloc_shared_library_handler, symbol)); in init_mmap_function()
208 static bool init_munmap_function(void* malloc_shared_library_handler, MallocMunmapType* func, const… in init_munmap_function() argument
212 *func = (MallocMunmapType)(dlsym(malloc_shared_library_handler, symbol)); in init_munmap_function()
219 static bool init_memtrace_function(void* malloc_shared_library_handler, MemTrace* func, const char*… in init_memtrace_function() argument
223 *func = (MemTrace)(dlsym(malloc_shared_library_handler, symbol)); in init_memtrace_function()
[all …]