Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/renderthread/
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()
DCacheManager.h51 void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
DRenderProxy.h114 static void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
DRenderThread.cpp351 void RenderThread::getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage) { in getMemoryUsage() argument
352 mCacheManager->getMemoryUsage(cpuUsage, gpuUsage); in getMemoryUsage()
DRenderProxy.cpp283 void RenderProxy::getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage) { in getMemoryUsage() argument
286 thread.queue().runSync([&]() { thread.getMemoryUsage(cpuUsage, gpuUsage); }); in getMemoryUsage()
DRenderThread.h163 void getMemoryUsage(size_t* cpuUsage, size_t* gpuUsage);
/frameworks/base/libs/hwui/tests/macrobench/
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()
/frameworks/base/services/core/java/com/android/server/am/
DAppProfiler.java1542 final long gpuUsage = Debug.getGpuTotalUsageKb(); in reportMemUsage() local
1543 if (gpuUsage >= 0) { in reportMemUsage()
1546 final long gpuDmaBufUsage = gpuUsage - gpuPrivateUsage; in reportMemUsage()
1548 memInfoBuilder.append(stringifyKBSize(gpuUsage)); in reportMemUsage()
1560 memInfoBuilder.append(stringifyKBSize(gpuUsage)); in reportMemUsage()
DActivityManagerService.java11748 final long gpuUsage = Debug.getGpuTotalUsageKb(); in dumpApplicationMemoryUsage() local
11749 if (gpuUsage >= 0) { in dumpApplicationMemoryUsage()
11752 final long gpuDmaBufUsage = gpuUsage - gpuPrivateUsage; in dumpApplicationMemoryUsage()
11754 pw.print(stringifyKBSize(gpuUsage)); in dumpApplicationMemoryUsage()
11765 pw.print(" GPU: "); pw.println(stringifyKBSize(gpuUsage)); in dumpApplicationMemoryUsage()