Home
last modified time | relevance | path

Searched refs:total_pss (Results 1 – 4 of 4) sorted by relevance

/aosp12/system/memory/libmeminfo/libdmabufinfo/tools/
H A Ddmabuf_dump.cpp155 uint64_t total_rss = 0, total_pss = 0; in PrintDmaBufPerProcess() local
175 total_pss += pss; in PrintDmaBufPerProcess()
179 total_size / 1024, kernel_rss / 1024, total_rss / 1024, total_pss / 1024); in PrintDmaBufPerProcess()
/aosp12/system/memory/libmeminfo/tools/
H A Dprocrank.cpp137 uint64_t total_pss = 0; variable
255 total_pss += show_wss ? proc.Wss().pss : proc.Usage().pss; in print_processes()
301 total_pss / 1024, total_uss / 1024); in print_totals()
304 total_pss / 1024, total_uss / 1024); in print_totals()
/aosp12/bionic/tests/
H A Ddlext_test.cpp621 size_t* total_pss) { in GetPss() argument
627 *total_pss = 0; in GetPss()
637 *total_pss += update_vma.usage.pss; in GetPss()
699 size_t total_pss = 0; in SpawnChildrenAndMeasurePss() local
703 total_pss += child_pss; in SpawnChildrenAndMeasurePss()
705 *pss_out = total_pss; in SpawnChildrenAndMeasurePss()
/aosp12/system/memory/libmeminfo/
H A Dlibmeminfo_test.cpp77 uint64_t total_pss = 0; in TEST() local
83 total_pss += map.usage.pss; in TEST()
89 EXPECT_NE(0, total_pss) << "PSS zero for all maps, that is not possible."; in TEST()