Home
last modified time | relevance | path

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

/base/update/packaging_tools/
Dgigraph_process.py145 def __init__(self, graph): argument
146 self.graph = graph
147 self.marked = [False for _ in range(self.graph.vertices)]
149 self.ontrack = [False for _ in range(self.graph.vertices)]
153 def __init__(self, graph): argument
154 self.graph = graph
158 for each_action in self.graph.actions_list:
169 for each_action in self.graph.actions_list:
179 def __init__(self, graph): argument
181 self.cycle = DirectedCycle(graph)
[all …]
/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/parse/
Dmeminfo_data.h45 uint64_t graph; member
53 uint64_t graph; member
/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
Dmemory_info.cpp208 graphicsMemory.graph = value; in GetGraphicsMemory()
233 valueMap.insert(pair<string, uint64_t>("Pss", graphicsMemory.graph)); in GetMemoryInfoByPid()
234 valueMap.insert(pair<string, uint64_t>("Private_Dirty", graphicsMemory.graph)); in GetMemoryInfoByPid()
542 usage.graph = graphicsMemory.graph; in GetMemByProcessPid()
543 usage.uss = usage.uss + graphicsMemory.gl + graphicsMemory.graph; in GetMemByProcessPid()
544 usage.pss = usage.pss + graphicsMemory.gl + graphicsMemory.graph; in GetMemByProcessPid()
545 usage.rss = usage.rss + graphicsMemory.gl + graphicsMemory.graph; in GetMemByProcessPid()
586 uint64_t graph = memUsage.graph; in MemUsageToMatrix() local
587 string unMappedGraph = AddKbUnit(graph); in MemUsageToMatrix()
669 totalGraph_ += usage.graph; in GetMemoryInfoNoPid()
Dmemory_util.cpp138 usage.graph = 0; in InitMemUsage()
145 graphicsMemory.graph = 0; in InitGraphicsMemory()