Searched refs:getOutputLayerCount (Results 1 – 7 of 7) sorted by relevance
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | Output.h | 122 auto end() const { return iterator(&mOutput, mOutput.getOutputLayerCount()); } in end() 124 auto cend() const { return const_iterator(&mOutput, mOutput.getOutputLayerCount()); } in cend() 252 virtual size_t getOutputLayerCount() const = 0;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | OutputTest.cpp | 93 MOCK_CONST_METHOD0(getOutputLayerCount, size_t()); 994 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1059 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1083 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1111 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1143 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1172 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(2u)); in OutputPrepareTest() 1369 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(3u)); in OutputCollectVisibleLayersTest() 1393 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(0u)); in TEST_F() 1434 EXPECT_CALL(mOutput, getOutputLayerCount()).WillRepeatedly(Return(1u)); in OutputEnsureOutputLayerIfVisibleTest() [all …]
|
D | CompositionEngineTest.cpp | 154 EXPECT_CALL(*mOutput1, getOutputLayerCount()).WillRepeatedly(Return(0u)); in CompositionEngineUpdateCursorAsyncTest() 157 EXPECT_CALL(*mOutput2, getOutputLayerCount()).WillRepeatedly(Return(1u)); in CompositionEngineUpdateCursorAsyncTest() 161 EXPECT_CALL(*mOutput3, getOutputLayerCount()).WillRepeatedly(Return(2u)); in CompositionEngineUpdateCursorAsyncTest()
|
D | DisplayTest.cpp | 119 size_t getOutputLayerCount() const override { return 1u; } in getOutputLayerCount() function
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | Output.h | 77 MOCK_CONST_METHOD0(getOutputLayerCount, size_t());
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | Output.h | 227 size_t getOutputLayerCount() const override { in createOutputTemplated()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | Output.cpp | 325 base::StringAppendF(&out, "\n %zu Layers\n", getOutputLayerCount()); in dumpBase() 412 for (size_t i = 0; i < getOutputLayerCount(); i++) { in findCurrentOutputLayerForLayer() 1057 const bool empty = getOutputLayerCount() == 0; in beginFrame()
|