Home
last modified time | relevance | path

Searched refs:GetGraphicsMemory (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/commonlibrary/memory_utils/libmeminfo/include/
H A Dmeminfo.h34 bool GetGraphicsMemory(const int pid, uint64_t &gl, uint64_t &graph);
/ohos5.0/base/hiviewdfx/hidumper/test/unittest/common/
H A Dhidumper_memory_test.cpp235 int ret = memoryInfo->GetGraphicsMemory(pid, graphicsMemory, GraphicType::GRAPH);
237 memoryInfo->GetGraphicsMemory(pid, graphicsMemory, GraphicType::GL);
/ohos5.0/commonlibrary/memory_utils/libmeminfo/test/unittest/
H A Dmeminfo_test.cpp109 GetGraphicsMemory(pid, gl, graph);
/ohos5.0/commonlibrary/memory_utils/libmeminfo/src/
H A Dmeminfo.cpp117 bool GetGraphicsMemory(const int pid, uint64_t &gl, uint64_t &graph) in GetGraphicsMemory() function
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
H A Dmemory_info.cpp230 GetGraphicsMemory(pid, graphicsMemory, GraphicType::GL); in GetMemoryInfoByPid()
231 GetGraphicsMemory(pid, graphicsMemory, GraphicType::GRAPH); in GetMemoryInfoByPid()
669 bool MemoryInfo::GetGraphicsMemory(int32_t pid, MemInfoData::GraphicsMemory& graphicsMemory, Graphi… in GetGraphicsMemory() function in OHOS::HiviewDFX::MemoryInfo
708 if (GetGraphicsMemory(pid, graphicsMemory, GraphicType::GL)) { in GetMemByProcessPid()
714 if (GetGraphicsMemory(pid, graphicsMemory, GraphicType::GRAPH)) { in GetMemByProcessPid()
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/
H A Dmemory_info.h167 …bool GetGraphicsMemory(int32_t pid, MemInfoData::GraphicsMemory& graphicsMemory, GraphicType graph…