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()
480 if (pending_commands_.empty()) { in handle_send_next_command()
484 command_just_sent_ = pending_commands_.front(); in handle_send_next_command()
485 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h158 std::queue<PendingCommand> pending_commands_; variable
/system/bt/gd/l2cap/classic/internal/
Dsignalling_manager.cc116 pending_commands_.push(std::move(pending_command)); in on_security_result_for_outgoing()
127 pending_commands_.push(std::move(pending_command)); in send_configuration_request()
137 pending_commands_.push(std::move(pending_command)); in SendDisconnectionRequest()
146 pending_commands_.push(std::move(pending_command)); in SendInformationRequest()
880 if (pending_commands_.empty()) { in handle_send_next_command()
883 command_just_sent_ = std::move(pending_commands_.front()); in handle_send_next_command()
884 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h125 std::queue<PendingCommand> pending_commands_; variable