Lines Matching refs:command_queue_
108 command_queue_.clear(); in ~impl()
133 command_queue_.emplace_back(move(command), move(on_response)); in enqueue_command()
168 …ASSERT_LOG(!command_queue_.empty(), "Unexpected %s event with OpCode 0x%02hx (%s)", logging_id.c_s… in handle_command_response()
172 …ASSERT_LOG(command_queue_.front().waiting_for_status_ == is_status, "0x%02hx (%s) was not expectin… in handle_command_response()
175 command_queue_.front().GetCallback<TResponse>()->Invoke(move(response_view)); in handle_command_response()
176 command_queue_.pop_front(); in handle_command_response()
189 LOG_ERROR("Flushing %zd waiting commands", command_queue_.size()); in on_hci_timeout()
191 command_queue_.clear(); in on_hci_timeout()
217 if (command_queue_.size() == 0) { in send_next_command()
222 command_queue_.front().command->Serialize(bi); in send_next_command()
228 command_queue_.front().command_view = std::make_unique<CommandView>(std::move(cmd_view)); in send_next_command()
229 …log_link_layer_connection_command_status(command_queue_.front().command_view, ErrorCode::STATUS_UN… in send_next_command()
230 …log_classic_pairing_command_status(command_queue_.front().command_view, ErrorCode::STATUS_UNKNOWN); in send_next_command()
302 …log_hci_event(command_queue_.front().command_view, event, module_.GetDependency<storage::StorageMo… in on_hci_event()
339 std::list<CommandQueueEntry> command_queue_; member