Home
last modified time | relevance | path

Searched refs:supportsOffloadPresent (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/surfaceflinger/CompositionEngine/tests/
DCompositionEngineTest.cpp332 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).WillOnce(Return(true)); in TEST_F()
333 EXPECT_CALL(*mDisplay2, supportsOffloadPresent).WillOnce(Return(true)); in TEST_F()
345 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).WillOnce(Return(false)); in TEST_F()
346 EXPECT_CALL(*mDisplay2, supportsOffloadPresent).Times(0); in TEST_F()
358 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).WillOnce(Return(true)); in TEST_F()
359 EXPECT_CALL(*mDisplay2, supportsOffloadPresent).WillOnce(Return(false)); in TEST_F()
371 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).Times(0); in TEST_F()
372 EXPECT_CALL(*mDisplay2, supportsOffloadPresent).Times(0); in TEST_F()
384 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).Times(0); in TEST_F()
395 EXPECT_CALL(*mDisplay1, supportsOffloadPresent).WillOnce(Return(true)); in TEST_F()
[all …]
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/
DDisplay.h66 bool supportsOffloadPresent() const override;
DOutput.h84 bool supportsOffloadPresent() const override { return false; } in supportsOffloadPresent() function
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DCompositionEngine.cpp110 if (!output->supportsOffloadPresent()) { in offloadOutputs()
DDisplay.cpp455 bool Display::supportsOffloadPresent() const { in supportsOffloadPresent() function in android::compositionengine::impl::Display
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/
DOutput.h85 MOCK_CONST_METHOD0(supportsOffloadPresent, bool());
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/
DOutput.h272 virtual bool supportsOffloadPresent() const = 0;