Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DCompositionEngine.h49 MOCK_CONST_METHOD0(getLastFrameRefreshTimestamp, nsecs_t());
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DCompositionEngine.h65 virtual nsecs_t getLastFrameRefreshTimestamp() const = 0;
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DCompositionEngine.h43 nsecs_t getLastFrameRefreshTimestamp() const override;
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DCompositionEngineTest.cpp228 EXPECT_GE(mEngine.getLastFrameRefreshTimestamp(), before); in TEST_F()
229 EXPECT_LE(mEngine.getLastFrameRefreshTimestamp(), after); in TEST_F()
246 EXPECT_EQ(ts1, mEngine.getLastFrameRefreshTimestamp()); in TEST_F()
247 EXPECT_EQ(ts2, mEngine.getLastFrameRefreshTimestamp()); in TEST_F()
248 EXPECT_EQ(ts3, mEngine.getLastFrameRefreshTimestamp()); in TEST_F()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DCompositionEngine.cpp88 nsecs_t CompositionEngine::getLastFrameRefreshTimestamp() const { in getLastFrameRefreshTimestamp() function in android::compositionengine::impl::CompositionEngine
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.cpp3153 TimePoint::fromNs(mCompositionEngine->getLastFrameRefreshTimestamp()); in onCompositionPresented()