Searched defs:total_memory (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/malloc_debug/
H A DTrackData.cpp114 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
141 *total_memory += header->real_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.cpp68 uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory,
238 size_t* info_size, size_t* total_memory, size_t* backtrace_size) {
243 total_memory == nullptr || backtrace_size == nullptr) {
251 *total_memory = 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/kernel/uapi/video/
H A Duvesafb.h67 __u16 total_memory; member in struct:vbe_ib
/bionic/libc/malloc_debug/tests/
H A Dmalloc_debug_unit_tests.cpp955 size_t total_memory; 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);
976 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, nullptr);
986 size_t total_memory; local
990 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size);
1009 size_t total_memory; local
1012 debug_get_malloc_leak_info(&info, &overall_size, &info_size, &total_memory, &backtrace_size);
1016 ASSERT_EQ(0U, total_memory);
1047 size_t total_memory; local
1124 size_t total_memory; local
1195 size_t total_memory; local
1255 size_t total_memory; local
1379 size_t total_memory; local
[all...]
/bionic/libc/bionic/
H A Dmalloc_common.cpp206 // "*total_memory" is set to the sum of all allocations we're tracking; does
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 439 milliseconds