Searched refs:backtrace_size (Results 1 – 8 of 8) sorted by relevance
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_unit_tests.cpp | 999 size_t backtrace_size; in TEST_F() local 1003 debug_get_malloc_leak_info(nullptr, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1007 debug_get_malloc_leak_info(&info, nullptr, &info_size, &total_memory, &backtrace_size); in TEST_F() 1011 debug_get_malloc_leak_info(&info, &overall_size, nullptr, &total_memory, &backtrace_size); in TEST_F() 1015 debug_get_malloc_leak_info(&info, &overall_size, &info_size, nullptr, &backtrace_size); in TEST_F() 1030 size_t backtrace_size; in TEST_F() local 1033 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1053 size_t backtrace_size; in TEST_F() local 1055 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 1060 ASSERT_EQ(0U, backtrace_size); in TEST_F() [all …]
|
/bionic/libc/malloc_hooks/ |
D | malloc_hooks.cpp | 55 size_t* backtrace_size); 110 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in hooks_get_malloc_leak_info() argument 115 *backtrace_size = 0; in hooks_get_malloc_leak_info()
|
/bionic/libc/malloc_hooks/tests/ |
D | malloc_hooks_tests.cpp | 204 size_t backtrace_size = 400; in TEST_F() local 205 get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size); in TEST_F() 210 EXPECT_EQ(0U, backtrace_size); in TEST_F()
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 73 size_t* total_memory, size_t* backtrace_size); 267 size_t* total_memory, size_t* backtrace_size) { in debug_get_malloc_leak_info() argument 272 backtrace_size == nullptr) { in debug_get_malloc_leak_info() 281 *backtrace_size = 0; in debug_get_malloc_leak_info() 290 PointerData::GetInfo(info, overall_size, info_size, total_memory, backtrace_size); in debug_get_malloc_leak_info()
|
D | PointerData.h | 155 size_t* backtrace_size);
|
D | PointerData.cpp | 452 size_t* total_memory, size_t* backtrace_size) { in GetInfo() argument 466 *backtrace_size = g_debug->config().backtrace_frames(); in GetInfo() 467 *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/bionic/ |
D | malloc_common.cpp | 246 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in get_malloc_leak_info() argument 252 backtrace_size); in get_malloc_leak_info()
|