Home
last modified time | relevance | path

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

/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/
H A DTimeStatsTest.cpp328 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
331 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
334 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
336 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
338 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
342 mTimeStats->incrementJankyFrames( in TEST_F()
897 mTimeStats->incrementJankyFrames( in TEST_F()
1074 mTimeStats->incrementJankyFrames( in TEST_F()
1190 mTimeStats->incrementJankyFrames( in TEST_F()
1194 mTimeStats->incrementJankyFrames( in TEST_F()
[all …]
H A DFrameTimelineTest.cpp317 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)) in TEST_F()
488 incrementJankyFrames( in TEST_F()
513 incrementJankyFrames( in TEST_F()
699 incrementJankyFrames( in TEST_F()
766 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)); in TEST_F()
1126 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)); in TEST_F()
1435 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)); in TEST_F()
1649 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)); in TEST_F()
1708 incrementJankyFrames( in TEST_F()
1729 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)); in TEST_F()
[all …]
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/mock/
H A DMockTimeStats.h57 MOCK_METHOD1(incrementJankyFrames, void(const JankyFramesInfo&));
/aosp12/frameworks/native/services/surfaceflinger/TimeStats/
H A DTimeStats.h158 virtual void incrementJankyFrames(const JankyFramesInfo& info) = 0;
264 void incrementJankyFrames(const JankyFramesInfo& info) override;
H A DTimeStats.cpp808 void TimeStats::incrementJankyFrames(const JankyFramesInfo& info) { in incrementJankyFrames() function in android::impl::TimeStats
/aosp12/frameworks/native/services/surfaceflinger/FrameTimeline/
H A DFrameTimeline.cpp610 mTimeStats->incrementJankyFrames({refreshRate, mRenderRate, mOwnerUid, mLayerName, in onPresent()