Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DTrackData.cpp114 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in GetInfo() argument
121 *backtrace_size = debug.config().backtrace_frames; in GetInfo()
122 *info_size = sizeof(size_t) * 2 + sizeof(uintptr_t) * *backtrace_size; in GetInfo()
DTrackData.h59 size_t* info_size, size_t* total_memory, size_t* backtrace_size);
Dmalloc_debug.cpp69 size_t* backtrace_size);
238 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in debug_get_malloc_leak_info() argument
243 total_memory == nullptr || backtrace_size == nullptr) { in debug_get_malloc_leak_info()
252 *backtrace_size = 0; in debug_get_malloc_leak_info()
260 g_debug->track->GetInfo(*g_debug, info, overall_size, info_size, total_memory, backtrace_size); in debug_get_malloc_leak_info()
DREADME_api.md12 …8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size);
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp956 size_t backtrace_size; in TEST_F() local
960 debug_get_malloc_leak_info(nullptr, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
964 debug_get_malloc_leak_info(&info, nullptr, &info_size, &total_memory, &backtrace_size); in TEST_F()
968 debug_get_malloc_leak_info(&info, &overall_size, nullptr, &total_memory, &backtrace_size); in TEST_F()
972 debug_get_malloc_leak_info(&info, &overall_size, &info_size, nullptr, &backtrace_size); in TEST_F()
987 size_t backtrace_size; in TEST_F() local
990 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
1010 size_t backtrace_size; in TEST_F() local
1012 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
1017 ASSERT_EQ(0U, backtrace_size); in TEST_F()
[all …]
/bionic/libc/bionic/
Dmalloc_common.cpp210 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in get_malloc_leak_info() argument
214 g_debug_get_malloc_leak_info_func(info, overall_size, info_size, total_memory, backtrace_size); in get_malloc_leak_info()