Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmalloc_common_dynamic.cpp430 &leak_info->total_memory, &leak_info->backtrace_size); in GetMallocLeakInfo()
569 size_t* total_memory, size_t* backtrace_size) { in get_malloc_leak_info() argument
571 total_memory == nullptr || backtrace_size == nullptr) { in get_malloc_leak_info()
579 *backtrace_size = 0; in get_malloc_leak_info()
587 *backtrace_size = leak_info.backtrace_size; in get_malloc_leak_info()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp1155 size_t backtrace_size; in TEST_F() local
1159 debug_get_malloc_leak_info(nullptr, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
1163 debug_get_malloc_leak_info(&info, nullptr, &info_size, &total_memory, &backtrace_size); in TEST_F()
1167 debug_get_malloc_leak_info(&info, &overall_size, nullptr, &total_memory, &backtrace_size); in TEST_F()
1171 debug_get_malloc_leak_info(&info, &overall_size, &info_size, nullptr, &backtrace_size); in TEST_F()
1186 size_t backtrace_size; in TEST_F() local
1189 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
1209 size_t backtrace_size; in TEST_F() local
1211 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F()
1216 ASSERT_EQ(0U, backtrace_size); in TEST_F()
[all …]
/bionic/libc/malloc_hooks/
Dmalloc_hooks.cpp56 size_t* backtrace_size);
113 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in hooks_get_malloc_leak_info() argument
118 *backtrace_size = 0; in hooks_get_malloc_leak_info()
/bionic/libc/platform/bionic/
Dmalloc.h49 size_t backtrace_size; member
/bionic/libc/malloc_debug/
Dmalloc_debug.cpp180 size_t* total_memory, size_t* backtrace_size);
468 size_t* total_memory, size_t* backtrace_size) { in debug_get_malloc_leak_info() argument
475 backtrace_size == nullptr) { in debug_get_malloc_leak_info()
484 *backtrace_size = 0; in debug_get_malloc_leak_info()
493 PointerData::GetInfo(info, overall_size, info_size, total_memory, backtrace_size); in debug_get_malloc_leak_info()
DPointerData.h157 size_t* backtrace_size);
DPointerData.cpp531 size_t* total_memory, size_t* backtrace_size) { in GetInfo() argument
545 *backtrace_size = g_debug->config().backtrace_frames(); in GetInfo()
546 *info_size = sizeof(size_t) * 2 + sizeof(uintptr_t) * *backtrace_size; in GetInfo()
DREADME_api.md10 …_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size);`
/bionic/libc/malloc_hooks/tests/
Dmalloc_hooks_tests.cpp209 EXPECT_EQ(0U, leak_info.backtrace_size); in TEST_F()