/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/parse/ |
H A D | meminfo_data.h | 29 uint64_t pss = 0; member 43 uint64_t pss = 0; member 62 uint64_t pss = 0; member
|
/base/hiviewdfx/hidumper/test/innerkits_test/ |
H A D | main.cpp | 60 uint64_t pss = GetPss(pid); in main() local 61 std::cout << "pss:" << pss << std::endl; in main() 76 std::cout << "GetMemInfo success:" << success << ",rss:" << info.rss << ",pss:" << info.pss in main()
|
/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/ |
H A D | memory_info.cpp | 192 MemoryUtil::GetInstance().SetMemTotalValue(to_string(meminfo.pss + meminfo.swapPss), lines, values); in CalcGroup() 395 " (" + to_string(ram.totalPss) + " total pss + " + to_string(ram.kernelUsed) + " kernel)\n"); in GetRamUsage() 693 usage.pss = memInfo.pss; in GetMemByProcessPid() 708 usage.pss = usage.pss + graphicsMemory.gl; in GetMemByProcessPid() 715 usage.pss = usage.pss + graphicsMemory.graph; in GetMemByProcessPid() 717 DUMPER_HILOGD(MODULE_SERVICE, "uss:%{public}d pss:%{public}d rss:%{public}d gl:%{public}d graph:%{public}d", in GetMemByProcessPid() 718 static_cast<int>(usage.uss), static_cast<int>(usage.pss), static_cas in GetMemByProcessPid() 729 uint64_t pss = memUsage.pss + memUsage.swapPss; MemUsageToMatrix() local [all...] |
H A D | memory_util.cpp | 132 memInfo.pss = 0; in InitMemInfo() 148 memInfo.pss = 0; in InitMemSmapsInfo() 169 usage.pss = 0; in InitMemUsage()
|
H A D | smaps_memory_info.cpp | 211 MemoryUtil::GetInstance().SetMemTotalValue(to_string(memSmapsInfo.pss + memSmapsInfo.swapPss), lines, values, true); in CalcSmapsGroup() 248 meminfo.pss += value; in SetPss()
|
/base/hiviewdfx/hidumper/test/unittest/common/ |
H A D | hidumper_innerkits_test.cpp | 154 EXPECT_GT(info.pss, 0); in HWTEST_F() 182 uint64_t pss = dumpUsage->GetPss(hidumperServicePid); in HWTEST_F() local 183 std::cout << "hidumper_service pss: " << pss << std::endl; in HWTEST_F() 184 EXPECT_LE(pss, HIDUMPER_SERVICE_RAM); in HWTEST_F()
|
/base/hiviewdfx/hiview/interfaces/inner_api/unified_collection/resource/ |
H A D | memory.h | 36 int32_t pss = 0; // proportional set Size, unit KB
member 37 int32_t swapPss = 0; // swap pss, unit KB
|
/base/hiviewdfx/hidumper/interfaces/innerkits/ |
H A D | dump_usage.cpp | 42 return GetMemInfo(pid, info) ? info.pss + info.swapPss : 0; in GetPss()
|
/base/hiviewdfx/faultloggerd/test/utils/ |
H A D | dfx_test_util.cpp | 250 std::string pss = *iter; in GetSelfMemoryCount() local 252 for (size_t i = 0; i < pss.size(); i++) { in GetSelfMemoryCount() 253 if (isdigit(pss[i])) { in GetSelfMemoryCount() 254 retVal = atoi(&pss[i]); in GetSelfMemoryCount()
|
/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/parse/ |
H A D | parse_smaps_rollup_info.cpp | 54 memInfo.pss = value; in GetValue()
|
/base/hiviewdfx/hiview/framework/native/unified_collection/collector/ |
H A D | memory_collector_impl.cpp | 99 "pss(KB)" << '\t' << "swapPss(KB)"<< '\t' << "adj" << '\t' <<
in WriteProcessMemoryToFile() 103 processMem.pss << '\t' << processMem.swapPss << '\t' << processMem.adj << '\t' <<
in WriteProcessMemoryToFile() 141 unsigned pss = 0;
in GetSmapsFromProcPath() local 149 pss += temp;
in GetSmapsFromProcPath() 155 procMem.pss = static_cast<int32_t>(pss);
in GetSmapsFromProcPath() 252 memory.pss = value;
in SetValueOfProcessMemory()
|
/base/hiviewdfx/hiview/base/event_publish/include/ |
H A D | app_event_handler.h | 41 uint64_t pss = 0; member
|
/base/hiviewdfx/hiview/plugins/faultlogger/service/ |
H A D | freeze_json_generator.cpp | 80 FreezeJsonMemory::Builder& FreezeJsonMemory::Builder::InitPss(unsigned long long pss)
in InitPss() argument 82 pss_ = pss;
in InitPss()
|
H A D | freeze_json_generator.h | 60 Builder& InitPss(unsigned long long pss);
83 static constexpr const char* const jsonMemoryPss = "pss";
|
/base/hiviewdfx/hiview/base/event_publish/ |
H A D | app_event_handler.cpp | 163 AddValueToJsonString("pss", event.pss, jsonStr); in PostEvent()
|
/base/hiviewdfx/hiview/plugins/reliability/leak_detectors/native_leak/ |
H A D | native_leak_state.cpp | 149 HIVIEW_LOGI("process: %{public}s, pid: %{public}d, pss:%{public}u KB", in CollectUserBaseInfo() 639 info.pss = userMonitorInfo->GetTopMemory(); in PostEvent()
|