Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/l2cap/le/internal/
Dsignalling_manager.cc77 pending_commands_.push(pending_command); in on_security_result_for_outgoing()
78 if (pending_commands_.size() == 1) { in on_security_result_for_outgoing()
86 pending_commands_.push(pending_command); in SendDisconnectRequest()
87 if (pending_commands_.size() == 1) { in SendDisconnectRequest()
97 pending_commands_.push(pending_command); in SendConnectionParameterUpdateRequest()
98 if (pending_commands_.size() == 1) { in SendConnectionParameterUpdateRequest()
526 if (pending_commands_.empty()) { in handle_send_next_command()
530 command_just_sent_ = pending_commands_.front(); in handle_send_next_command()
531 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h170 std::queue<PendingCommand> pending_commands_; variable
/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Dsignalling_manager.cc130 pending_commands_.push(std::move(pending_command)); in on_security_result_for_outgoing()
141 pending_commands_.push(std::move(pending_command)); in send_configuration_request()
151 pending_commands_.push(std::move(pending_command)); in SendDisconnectionRequest()
160 pending_commands_.push(std::move(pending_command)); in SendInformationRequest()
947 if (pending_commands_.empty()) { in handle_send_next_command()
950 command_just_sent_ = std::move(pending_commands_.front()); in handle_send_next_command()
951 pending_commands_.pop(); in handle_send_next_command()
Dsignalling_manager.h130 std::queue<PendingCommand> pending_commands_; variable