Home
last modified time | relevance | path

Searched refs:findLayer (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/services/surfaceflinger/Scheduler/
DLayerHistory.h129 std::pair<LayerStatus, LayerPair*> findLayer(int32_t id) REQUIRES(mLock);
131 std::pair<LayerStatus, const LayerPair*> findLayer(int32_t id) const REQUIRES(mLock) { in findLayer() function
132 return const_cast<LayerHistory*>(this)->findLayer(id); in findLayer()
DLayerHistory.cpp114 LOG_ALWAYS_FATAL_IF(findLayer(layer->getSequence()).first != LayerStatus::NotFound, in registerLayer()
137 auto [found, layerPair] = findLayer(id); in record()
160 auto [found, layerPair] = findLayer(id); in setDefaultFrameRateCompatibility()
174 auto [found, layerPair] = findLayer(id); in setLayerProperties()
401 auto [found, layerPair] = findLayer(id); in getLayerFramerate()
408 auto LayerHistory::findLayer(int32_t id) -> std::pair<LayerStatus, LayerPair*> { in findLayer() function in android::scheduler::LayerHistory
/frameworks/native/services/surfaceflinger/tests/unittests/
DLayerHistoryIntegrationTest.cpp118 auto [found, layerPair] = history().findLayer(layer->getSequence()); in setDefaultLayerVote()
DLayerHistoryTest.cpp112 auto [found, layerPair] = history().findLayer(layer->getSequence()); in setDefaultLayerVote()