Lines Matching refs:op_code
51 static void on_hci_timeout(OpCode op_code) { in on_hci_timeout() argument
52 ASSERT_LOG(false, "Timed out waiting for 0x%02hx (%s)", op_code, OpCodeText(op_code).c_str()); in on_hci_timeout()
126 OpCode op_code = response_view.GetCommandOpCode(); in handle_command_response() local
127 if (op_code == OpCode::NONE) { in handle_command_response()
133 …ommand_queue_.empty(), "Unexpected %s event with OpCode 0x%02hx (%s)", logging_id.c_str(), op_code, in handle_command_response()
134 OpCodeText(op_code).c_str()); in handle_command_response()
135 …ASSERT_LOG(waiting_command_ == op_code, "Waiting for 0x%02hx (%s), got 0x%02hx (%s)", waiting_comm… in handle_command_response()
136 OpCodeText(waiting_command_).c_str(), op_code, OpCodeText(op_code).c_str()); in handle_command_response()
138 op_code, OpCodeText(op_code).c_str(), logging_id.c_str()); in handle_command_response()
164 OpCode op_code = cmd_view.GetOpCode(); in send_next_command() local
165 waiting_command_ = op_code; in send_next_command()
167 hci_timeout_alarm_->Schedule(BindOnce(&on_hci_timeout, op_code), kHciTimeoutMs); in send_next_command()