Searched refs:backtrace_size (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/bionic/ |
D | malloc_common_dynamic.cpp | 430 &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/ |
D | malloc_debug_unit_tests.cpp | 1155 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/ |
D | malloc_hooks.cpp | 56 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/ |
D | malloc.h | 49 size_t backtrace_size; member
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 180 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()
|
D | PointerData.h | 157 size_t* backtrace_size);
|
D | PointerData.cpp | 531 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()
|
D | README_api.md | 10 …_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size);`
|
/bionic/libc/malloc_hooks/tests/ |
D | malloc_hooks_tests.cpp | 209 EXPECT_EQ(0U, leak_info.backtrace_size); in TEST_F()
|