Lines Matching full:requested
145 // Get the requested setting for this control.
146 T requested;
147 int res = SingleTagValue(metadata, delegate_->tag(), &requested);
149 // Nothing requested of this control, that's fine.
157 // Check that the requested setting is in the supported options.
163 return options_->IsSupported(requested);
173 // Get the requested value.
174 T requested;
175 int res = SingleTagValue(metadata, delegate_->tag(), &requested);
177 // Nothing requested of this control, nothing to do.
186 if (options_ && !options_->IsSupported(requested)) {
187 HAL_LOGE("Unsupported value requested for control %d.", delegate_->tag());
191 return delegate_->SetValue(requested);