Home
last modified time | relevance | path

Searched refs:memUsage (Results 1 – 2 of 2) sorted by relevance

/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
Dmemory_info.cpp550 void MemoryInfo::MemUsageToMatrix(const MemInfoData::MemUsage &memUsage, StringMatrix result) in MemUsageToMatrix() argument
553 string pid = to_string(memUsage.pid); in MemUsageToMatrix()
557 string name = memUsage.name; in MemUsageToMatrix()
562 uint64_t pss = memUsage.pss + memUsage.swapPss; in MemUsageToMatrix()
563 string totalPss = to_string(pss) + "(" + to_string(memUsage.swapPss) + " in SwapPss) kB"; in MemUsageToMatrix()
566 uint64_t vss = memUsage.vss; in MemUsageToMatrix()
571 uint64_t rss = memUsage.rss; in MemUsageToMatrix()
576 uint64_t uss = memUsage.uss; in MemUsageToMatrix()
581 uint64_t gl = memUsage.gl; in MemUsageToMatrix()
586 uint64_t graph = memUsage.graph; in MemUsageToMatrix()
[all …]
/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/
Dmemory_info.h99 void MemUsageToMatrix(const MemInfoData::MemUsage &memUsage, StringMatrix result);