Searched refs:supportsOffloadPresent (Results 1 – 7 of 7) sorted by relevance
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | CompositionEngineTest.cpp | 332 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/ |
D | Display.h | 66 bool supportsOffloadPresent() const override;
|
D | Output.h | 84 bool supportsOffloadPresent() const override { return false; } in supportsOffloadPresent() function
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | CompositionEngine.cpp | 110 if (!output->supportsOffloadPresent()) { in offloadOutputs()
|
D | Display.cpp | 455 bool Display::supportsOffloadPresent() const { in supportsOffloadPresent() function in android::compositionengine::impl::Display
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 85 MOCK_CONST_METHOD0(supportsOffloadPresent, bool());
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | Output.h | 272 virtual bool supportsOffloadPresent() const = 0;
|