Searched refs:findLayer (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | LayerHistory.h | 129 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()
|
D | LayerHistory.cpp | 114 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/ |
D | LayerHistoryIntegrationTest.cpp | 118 auto [found, layerPair] = history().findLayer(layer->getSequence()); in setDefaultLayerVote()
|
D | LayerHistoryTest.cpp | 112 auto [found, layerPair] = history().findLayer(layer->getSequence()); in setDefaultLayerVote()
|