Searched refs:isFrontBuffered (Results 1 – 12 of 12) sorted by relevance
272 TEST_F(LayerInfoTest, isFrontBuffered) { in TEST_F() argument274 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()
1185 TEST_F(LayerSnapshotTest, isFrontBuffered) { in TEST_F() argument1192 EXPECT_TRUE(getSnapshot(1)->isFrontBuffered()); in TEST_F()1202 EXPECT_FALSE(getSnapshot(1)->isFrontBuffered()); in TEST_F()
1156 EXPECT_CALL(*layer, isFrontBuffered()).WillRepeatedly(Return(true)); in TEST_F()
48 MOCK_METHOD(bool, isFrontBuffered, (), (const, override));
214 bool isFrontBuffered() const;376 bool isFrontBuffered = false; member
347 if (FlagManager::getInstance().vrr_config() && isFrontBuffered()) { in getRefreshRateVote()416 bool LayerInfo::isFrontBuffered() const { in isFrontBuffered() function in android::scheduler::LayerInfo417 return mLayerProps->isFrontBuffered; in isFrontBuffered()
56 if (FlagManager::getInstance().vrr_config() && info.isFrontBuffered() && info.isVisible()) { in isLayerActive()
149 bool isFrontBuffered() const;
335 bool LayerSnapshot::isFrontBuffered() const { in isFrontBuffered() function in android::surfaceflinger::frontend::LayerSnapshot
346 virtual bool isFrontBuffered() const;926 .isFrontBuffered = isFrontBuffered()}; in getLayerProps()
2392 .isFrontBuffered = snapshot->isFrontBuffered(), in updateLayerHistory()5348 .isFrontBuffered = layer->isFrontBuffered(), in applyTransactionState()
4257 bool Layer::isFrontBuffered() const { in isFrontBuffered() function in android::Layer