Home
last modified time | relevance | path

Searched refs:isFrontBuffered (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/services/surfaceflinger/tests/unittests/
DLayerInfoTest.cpp272 TEST_F(LayerInfoTest, isFrontBuffered) { in TEST_F() argument
274 ASSERT_FALSE(layerInfo.isFrontBuffered()); in TEST_F()
276 LayerProps prop = {.isFrontBuffered = true}; in TEST_F()
278 ASSERT_TRUE(layerInfo.isFrontBuffered()); in TEST_F()
280 prop.isFrontBuffered = false; in TEST_F()
282 ASSERT_FALSE(layerInfo.isFrontBuffered()); in TEST_F()
DLayerSnapshotTest.cpp1185 TEST_F(LayerSnapshotTest, isFrontBuffered) { in TEST_F() argument
1192 EXPECT_TRUE(getSnapshot(1)->isFrontBuffered()); in TEST_F()
1202 EXPECT_FALSE(getSnapshot(1)->isFrontBuffered()); in TEST_F()
DLayerHistoryTest.cpp1156 EXPECT_CALL(*layer, isFrontBuffered()).WillRepeatedly(Return(true)); in TEST_F()
/frameworks/native/services/surfaceflinger/tests/unittests/mock/
DMockLayer.h48 MOCK_METHOD(bool, isFrontBuffered, (), (const, override));
/frameworks/native/services/surfaceflinger/Scheduler/
DLayerInfo.h214 bool isFrontBuffered() const;
376 bool isFrontBuffered = false; member
DLayerInfo.cpp347 if (FlagManager::getInstance().vrr_config() && isFrontBuffered()) { in getRefreshRateVote()
416 bool LayerInfo::isFrontBuffered() const { in isFrontBuffered() function in android::scheduler::LayerInfo
417 return mLayerProps->isFrontBuffered; in isFrontBuffered()
DLayerHistory.cpp56 if (FlagManager::getInstance().vrr_config() && info.isFrontBuffered() && info.isVisible()) { in isLayerActive()
/frameworks/native/services/surfaceflinger/FrontEnd/
DLayerSnapshot.h149 bool isFrontBuffered() const;
DLayerSnapshot.cpp335 bool LayerSnapshot::isFrontBuffered() const { in isFrontBuffered() function in android::surfaceflinger::frontend::LayerSnapshot
/frameworks/native/services/surfaceflinger/
DLayer.h346 virtual bool isFrontBuffered() const;
926 .isFrontBuffered = isFrontBuffered()}; in getLayerProps()
DSurfaceFlinger.cpp2392 .isFrontBuffered = snapshot->isFrontBuffered(), in updateLayerHistory()
5348 .isFrontBuffered = layer->isFrontBuffered(), in applyTransactionState()
DLayer.cpp4257 bool Layer::isFrontBuffered() const { in isFrontBuffered() function in android::Layer