Home
last modified time | relevance | path

Searched refs:gpuUsage (Results 1 – 9 of 9) sorted by relevance

/aosp12/frameworks/base/libs/hwui/renderthread/
H A DCacheManager.cpp133 void CacheManager::getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage) { in getMemoryUsage() argument
135 *gpuUsage = 0; in getMemoryUsage()
146 *gpuUsage += gpuTracer.total(); in getMemoryUsage()
H A DCacheManager.h51 void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
H A DRenderThread.cpp334 void RenderThread::getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage) { in getMemoryUsage() argument
335 mCacheManager->getMemoryUsage(cpuUsage, gpuUsage); in getMemoryUsage()
H A DRenderProxy.h112 static void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
H A DRenderProxy.cpp267 void RenderProxy::getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage) { in getMemoryUsage() argument
270 thread.queue().runSync([&]() { thread.getMemoryUsage(cpuUsage, gpuUsage); }); in getMemoryUsage()
H A DRenderThread.h162 void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
/aosp12/frameworks/base/libs/hwui/tests/macrobench/
H A DTestSceneRunner.cpp93 size_t cpuUsage, gpuUsage; in outputBenchmarkReport() local
94 RenderProxy::getMemoryUsage(&cpuUsage, &gpuUsage); in outputBenchmarkReport()
95 report.counters["Rendering RAM"] = Counter{static_cast<double>(cpuUsage + gpuUsage), in outputBenchmarkReport()
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DAppProfiler.java1555 final long gpuUsage = Debug.getGpuTotalUsageKb(); in reportMemUsage() local
1556 if (gpuUsage >= 0) { in reportMemUsage()
1559 final long gpuDmaBufUsage = gpuUsage - gpuPrivateUsage; in reportMemUsage()
1561 memInfoBuilder.append(stringifyKBSize(gpuUsage)); in reportMemUsage()
1573 memInfoBuilder.append(stringifyKBSize(gpuUsage)); in reportMemUsage()
H A DActivityManagerService.java11091 final long gpuUsage = Debug.getGpuTotalUsageKb(); in dumpApplicationMemoryUsage() local
11092 if (gpuUsage >= 0) { in dumpApplicationMemoryUsage()
11095 final long gpuDmaBufUsage = gpuUsage - gpuPrivateUsage; in dumpApplicationMemoryUsage()
11097 pw.print(stringifyKBSize(gpuUsage)); in dumpApplicationMemoryUsage()
11108 pw.print(" GPU: "); pw.println(stringifyKBSize(gpuUsage)); in dumpApplicationMemoryUsage()