Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/tests/unittests/
DTimeStatsTest.cpp332 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
335 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()
340 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
342 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
344 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
346 mTimeStats->incrementJankyFrames( in TEST_F()
349 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
941 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
944 mTimeStats->incrementJankyFrames({kRefreshRate0, kRenderRate0, UID_0, genLayerName(LAYER_ID_0), in TEST_F()
[all …]
DFrameTimelineTest.cpp301 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)).Times(2); in TEST_F()
346 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)).Times(1); in TEST_F()
399 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)) in TEST_F()
559 EXPECT_CALL(*mTimeStats, incrementJankyFrames(_)).Times(0); in TEST_F()
583 incrementJankyFrames( in TEST_F()
611 incrementJankyFrames( in TEST_F()
641 incrementJankyFrames(TimeStats::JankyFramesInfo{refreshRate, std::nullopt, sUidOne, in TEST_F()
669 incrementJankyFrames(TimeStats::JankyFramesInfo{refreshRate, std::nullopt, sUidOne, in TEST_F()
699 incrementJankyFrames(TimeStats::JankyFramesInfo{refreshRate, std::nullopt, sUidOne, in TEST_F()
729 incrementJankyFrames(TimeStats::JankyFramesInfo{refreshRate, std::nullopt, sUidOne, in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/tests/unittests/mock/
DMockTimeStats.h55 MOCK_METHOD1(incrementJankyFrames, void(const JankyFramesInfo&));
/frameworks/native/services/surfaceflinger/TimeStats/
DTimeStats.h172 virtual void incrementJankyFrames(const JankyFramesInfo& info) = 0;
275 void incrementJankyFrames(const JankyFramesInfo& info) override;
DTimeStats.cpp805 void TimeStats::incrementJankyFrames(const JankyFramesInfo& info) { in incrementJankyFrames() function in android::impl::TimeStats
/frameworks/native/services/surfaceflinger/FrameTimeline/
DFrameTimeline.cpp685 mTimeStats->incrementJankyFrames({refreshRate, mRenderRate, mOwnerUid, mLayerName, in onPresent()