Home
last modified time | relevance | path

Searched refs:pending_commands_ (Results 1 – 4 of 4) sorted by relevance

/system/bt/gd/l2cap/le/internal/
Dsignalling_manager.cc75 pending_commands_.push(pending_command); in on_security_result_for_outgoing()
76 if (pending_commands_.size() == 1) { in on_security_result_for_outgoing()
84 pending_commands_.push(pending_command); in SendDisconnectRequest()
85 if (pending_commands_.size() == 1) { in SendDisconnectRequest()
95 pending_commands_.push(pending_command); in SendConnectionParameterUpdateRequest()
96 if (pending_commands_.size() == 1) { in SendConnectionParameterUpdateRequest()
518 if (pending_commands_.empty()) { in handle_send_next_command()
522 command_just_sent_ = pending_commands_.front(); in handle_send_next_command()
523 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h170 std::queue<PendingCommand> pending_commands_; variable
/system/bt/gd/l2cap/classic/internal/
Dsignalling_manager.cc128 pending_commands_.push(std::move(pending_command)); in on_security_result_for_outgoing()
139 pending_commands_.push(std::move(pending_command)); in send_configuration_request()
149 pending_commands_.push(std::move(pending_command)); in SendDisconnectionRequest()
158 pending_commands_.push(std::move(pending_command)); in SendInformationRequest()
924 if (pending_commands_.empty()) { in handle_send_next_command()
927 command_just_sent_ = std::move(pending_commands_.front()); in handle_send_next_command()
928 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h130 std::queue<PendingCommand> pending_commands_; variable