Home
last modified time | relevance | path

Searched refs:total_memory (Results 1 – 13 of 13) sorted by relevance

/aosp12/bionic/libc/malloc_debug/tests/
H A Dmalloc_debug_unit_tests.cpp1085 size_t total_memory; in TEST_F() local
1116 size_t total_memory; in TEST_F() local
1139 size_t total_memory; in TEST_F() local
1177 size_t total_memory; in TEST_F() local
1255 size_t total_memory; in TEST_F() local
1288 size_t total_memory; in TEST_F() local
1628 size_t total_memory; in TEST_F() local
1711 size_t total_memory; in TEST_F() local
1770 size_t total_memory; in TEST_F() local
1830 size_t total_memory; in TEST_F() local
[all …]
/aosp12/bionic/libc/bionic/
H A Dmalloc_common_dynamic.cpp426 &leak_info->total_memory, &leak_info->backtrace_size); in GetMallocLeakInfo()
550 size_t* total_memory, size_t* backtrace_size) { in get_malloc_leak_info() argument
552 total_memory == nullptr || backtrace_size == nullptr) { in get_malloc_leak_info()
559 *total_memory = 0; in get_malloc_leak_info()
567 *total_memory = leak_info.total_memory; in get_malloc_leak_info()
/aosp12/bionic/libc/malloc_hooks/
H A Dmalloc_hooks.cpp55 uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory,
113 size_t* info_size, size_t* total_memory, size_t* backtrace_size) { in hooks_get_malloc_leak_info() argument
117 *total_memory = 0; in hooks_get_malloc_leak_info()
/aosp12/bionic/libc/malloc_debug/
H A DPointerData.cpp512 size_t* total_memory, size_t* backtrace_size) { in GetInfo() argument
535 *total_memory = 0; in GetInfo()
538 *total_memory += list_info.size * list_info.num_allocations; in GetInfo()
564 size_t total_memory = 0; in DumpLiveToFile() local
566 total_memory += info.size * info.num_allocations; in DumpLiveToFile()
569 dprintf(fd, "Total memory: %zu\n", total_memory); in DumpLiveToFile()
H A Dmalloc_debug.cpp83 size_t* total_memory, size_t* backtrace_size);
371 size_t* total_memory, size_t* backtrace_size) { in debug_get_malloc_leak_info() argument
377 …if (info == nullptr || overall_size == nullptr || info_size == nullptr || total_memory == nullptr … in debug_get_malloc_leak_info()
386 *total_memory = 0; in debug_get_malloc_leak_info()
396 PointerData::GetInfo(info, overall_size, info_size, total_memory, backtrace_size); in debug_get_malloc_leak_info()
H A DPointerData.h157 static void GetInfo(uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory,
H A DREADME_api.md10 …info(uint8_t** info, size_t* overall_size, size_t* info_size, size_t* total_memory, size_t* backtr…
/aosp12/bionic/libc/platform/bionic/
H A Dmalloc.h46 size_t total_memory; member
/aosp12/bionic/libc/kernel/uapi/video/
H A Duvesafb.h58 __u16 total_memory; member
/aosp12/frameworks/av/media/utils/
H A DMemoryLeakTrackUtil.cpp67 oss << leak_info.total_memory << " bytes in " << count << " allocations\n"; in dumpMemoryAddresses()
/aosp12/frameworks/base/core/jni/
H A Dandroid_ddm_DdmHandleNativeHeap.cpp87 header.totalMemory = leak_info.total_memory; in DdmHandleNativeHeap_getLeakInfo()
/aosp12/bionic/libc/malloc_hooks/tests/
H A Dmalloc_hooks_tests.cpp206 EXPECT_EQ(0U, leak_info.total_memory); in TEST_F()
/aosp12/art/runtime/gc/
H A Dheap.cc2738 const size_t total_memory = GetTotalMemory(); in LogGC() local
2750 << PrettySize(total_memory) << ", " << "paused " << pause_string.str() in LogGC()