Searched defs:backtrace_size (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/malloc_debug/
H A DTrackData.cpp114 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
121 *backtrace_size = debug.config().backtrace_frames;
122 *info_size = sizeof(size_t) * 2 + sizeof(uintptr_t) * *backtrace_size;
113 GetInfo(DebugData& debug, uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size) argument
H A Dmalloc_debug.cpp69 size_t* backtrace_size);
238 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
243 total_memory == nullptr || backtrace_size == nullptr) {
252 *backtrace_size = 0;
260 g_debug->track->GetInfo(*g_debug, info, overall_size, info_size, total_memory, backtrace_size);
237 debug_get_malloc_leak_info(uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size) argument
/bionic/libc/malloc_debug/tests/
H A Dmalloc_debug_unit_tests.cpp956 size_t backtrace_size; local
960 debug_get_malloc_leak_info(nullptr, &overall_size, &info_size, &total_memory, &backtrace_size);
964 debug_get_malloc_leak_info(&info, nullptr, &info_size, &total_memory, &backtrace_size);
968 debug_get_malloc_leak_info(&info, &overall_size, nullptr, &total_memory, &backtrace_size);
972 debug_get_malloc_leak_info(&info, &overall_size, &info_size, nullptr, &backtrace_size);
987 size_t backtrace_size; local
990 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size);
1010 size_t backtrace_size; local
1012 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size);
1017 ASSERT_EQ(0U, backtrace_size);
1048 size_t backtrace_size; local
1125 size_t backtrace_size; local
1196 size_t backtrace_size; local
1256 size_t backtrace_size; local
1380 size_t backtrace_size; local
[all...]
/bionic/libc/bionic/
H A Dmalloc_common.cpp208 // "*backtrace_size" is set to the maximum number of entries in the back trace
210 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
214 g_debug_get_malloc_leak_info_func(info, overall_size, info_size, total_memory, backtrace_size);
209 get_malloc_leak_info(uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtrace_size) argument

Completed in 77 milliseconds