Searched refs:backtrace_size (Results 1 – 9 of 9) sorted by relevance
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_unit_tests.cpp | 1086 size_t backtrace_size; in TEST_F() local 1090 debug_get_malloc_leak_info(nullptr, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1094 debug_get_malloc_leak_info(&info, nullptr, &info_size, &total_memory, &backtrace_size); in TEST_F() 1098 debug_get_malloc_leak_info(&info, &overall_size, nullptr, &total_memory, &backtrace_size); in TEST_F() 1102 debug_get_malloc_leak_info(&info, &overall_size, &info_size, nullptr, &backtrace_size); in TEST_F() 1117 size_t backtrace_size; in TEST_F() local 1120 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1140 size_t backtrace_size; in TEST_F() local 1142 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1147 ASSERT_EQ(0U, backtrace_size); in TEST_F() [all …]
|
/bionic/libc/bionic/ |
D | malloc_common_dynamic.cpp | 422 &leak_info->total_memory, &leak_info->backtrace_size); in GetMallocLeakInfo() 549 size_t* total_memory, size_t* backtrace_size) { in get_malloc_leak_info() argument 551 total_memory == nullptr || backtrace_size == nullptr) { in get_malloc_leak_info() 559 *backtrace_size = 0; in get_malloc_leak_info() 567 *backtrace_size = leak_info.backtrace_size; in get_malloc_leak_info()
|
/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 | 47 size_t backtrace_size; member
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 83 size_t* total_memory, size_t* backtrace_size); 372 size_t* total_memory, size_t* backtrace_size) { in debug_get_malloc_leak_info() argument 379 backtrace_size == nullptr) { in debug_get_malloc_leak_info() 388 *backtrace_size = 0; in debug_get_malloc_leak_info() 397 PointerData::GetInfo(info, overall_size, info_size, total_memory, backtrace_size); in debug_get_malloc_leak_info()
|
D | PointerData.cpp | 512 size_t* total_memory, size_t* backtrace_size) { in GetInfo() argument 526 *backtrace_size = g_debug->config().backtrace_frames(); in GetInfo() 527 *info_size = sizeof(size_t) * 2 + sizeof(uintptr_t) * *backtrace_size; in GetInfo()
|
D | PointerData.h | 158 size_t* backtrace_size);
|
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 | 207 EXPECT_EQ(0U, leak_info.backtrace_size); in TEST_F()
|