Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmalloc_common_dynamic.cpp412 bool GetMallocLeakInfo(android_mallopt_leak_info_t* leak_info) { in GetMallocLeakInfo()
424 bool FreeMallocLeakInfo(android_mallopt_leak_info_t* leak_info) { in FreeMallocLeakInfo()
487 if (arg == nullptr || arg_size != sizeof(android_mallopt_leak_info_t)) { in android_mallopt()
491 return GetMallocLeakInfo(reinterpret_cast<android_mallopt_leak_info_t*>(arg)); in android_mallopt()
494 if (arg == nullptr || arg_size != sizeof(android_mallopt_leak_info_t)) { in android_mallopt()
498 return FreeMallocLeakInfo(reinterpret_cast<android_mallopt_leak_info_t*>(arg)); in android_mallopt()
524 android_mallopt_leak_info_t leak_info = {}; in get_malloc_leak_info()
535 android_mallopt_leak_info_t leak_info = { .buffer = info }; in free_malloc_leak_info()
/bionic/libc/private/
Dbionic_malloc.h47 } android_mallopt_leak_info_t; typedef
/bionic/libc/malloc_hooks/tests/
Dmalloc_hooks_tests.cpp201 android_mallopt_leak_info_t leak_info; in TEST_F()