Lines Matching refs:LayerStatus
114 LOG_ALWAYS_FATAL_IF(findLayer(layer->getSequence()).first != LayerStatus::NotFound, in registerLayer()
138 if (found == LayerStatus::NotFound) { in record()
148 if (found == LayerStatus::LayerInInactiveMap) { in record()
161 if (found == LayerStatus::NotFound) { in setDefaultFrameRateCompatibility()
175 if (found == LayerStatus::NotFound) { in setLayerProperties()
185 if (found == LayerStatus::LayerInInactiveMap && info->isVisible()) { in setLayerProperties()
402 if (found != LayerStatus::NotFound) { in getLayerFramerate()
408 auto LayerHistory::findLayer(int32_t id) -> std::pair<LayerStatus, LayerPair*> { in findLayer()
412 return {LayerStatus::LayerInActiveMap, &(it->second)}; in findLayer()
416 return {LayerStatus::LayerInInactiveMap, &(it->second)}; in findLayer()
418 return {LayerStatus::NotFound, nullptr}; in findLayer()