Home
last modified time | relevance | path

Searched refs:supportsGpuReporting (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/services/surfaceflinger/DisplayHardware/
DPowerAdvisor.cpp338 if (supportsGpuReporting()) { in reportActualWorkDuration()
451 bool PowerAdvisor::supportsGpuReporting() { in supportsGpuReporting() function in android::Hwc2::impl::PowerAdvisor
480 if (displayData.gpuEndFenceTime && !supportsGpuReporting()) { in setGpuFenceTime()
500 if (!supportsGpuReporting()) { in setGpuFenceTime()
663 .cpuDurationNanos = supportsGpuReporting() ? cpuDuration.ns() : 0, in estimateWorkDuration()
664 .gpuDurationNanos = supportsGpuReporting() ? estimatedGpuDuration.ns() : 0, in estimateWorkDuration()
DPowerAdvisor.h63 virtual bool supportsGpuReporting() = 0;
127 bool supportsGpuReporting() override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DMockPowerAdvisor.h41 MOCK_METHOD(bool, supportsGpuReporting, (), (override));
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/
DMockPowerAdvisor.h39 MOCK_METHOD(bool, supportsGpuReporting, (), (override));
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DDisplay.cpp425 return mPowerAdvisor != nullptr && mPowerAdvisor->supportsGpuReporting(); in isPowerHintSessionGpuReportingEnabled()