Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp1086 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/
Dmalloc_common_dynamic.cpp422 &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/
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.h47 size_t backtrace_size; member
/bionic/libc/malloc_debug/
Dmalloc_debug.cpp83 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()
DPointerData.cpp512 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()
DPointerData.h158 size_t* backtrace_size);
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.cpp207 EXPECT_EQ(0U, leak_info.backtrace_size); in TEST_F()