Lines Matching defs:status
300 auto status = ProducerChannel::Create(this, buffer_id, width, height,
303 if (status) {
304 message.SetChannel(status.take());
308 status.GetErrorMessage().c_str());
309 return status.error_status();
365 auto status = ProducerQueueChannel::Create(this, queue_id, producer_config,
367 if (status) {
368 message.SetChannel(status.take());
372 return status.error_status();
382 const auto status = service_->ModifyChannelEvents(channel_id_, 0, POLLIN);
383 ALOGE_IF(!status,
386 channel_id_, status.GetErrorMessage().c_str());
395 const auto status = service_->ModifyChannelEvents(channel_id_, POLLIN, 0);
396 ALOGE_IF(!status,
399 channel_id_, status.GetErrorMessage().c_str());
406 const auto status = service_->ModifyChannelEvents(channel_id_, 0, POLLHUP);
408 !status,
410 channel_id_, status.GetErrorMessage().c_str());