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.cpp414 bool GetMallocLeakInfo(android_mallopt_leak_info_t* leak_info) { in GetMallocLeakInfo()
426 bool FreeMallocLeakInfo(android_mallopt_leak_info_t* leak_info) { in FreeMallocLeakInfo()
511 if (arg == nullptr || arg_size != sizeof(android_mallopt_leak_info_t)) { in android_mallopt()
515 return GetMallocLeakInfo(reinterpret_cast<android_mallopt_leak_info_t*>(arg)); in android_mallopt()
518 if (arg == nullptr || arg_size != sizeof(android_mallopt_leak_info_t)) { in android_mallopt()
522 return FreeMallocLeakInfo(reinterpret_cast<android_mallopt_leak_info_t*>(arg)); in android_mallopt()
561 android_mallopt_leak_info_t leak_info = {}; in get_malloc_leak_info()
572 android_mallopt_leak_info_t leak_info = { .buffer = info }; in free_malloc_leak_info()
/bionic/libc/platform/bionic/
Dmalloc.h48 } 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()