Home
last modified time | relevance | path

Searched refs:pending_command (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/bt/gd/l2cap/le/internal/
H A Dsignalling_manager.h59 PendingCommand pending_command; in CreditBasedConnectionRequest() local
62 pending_command.psm_ = psm; in CreditBasedConnectionRequest()
63 pending_command.source_cid_ = scid; in CreditBasedConnectionRequest()
64 pending_command.mtu_ = mtu; in CreditBasedConnectionRequest()
65 pending_command.mps_ = mps; in CreditBasedConnectionRequest()
67 return pending_command; in CreditBasedConnectionRequest()
71 PendingCommand pending_command; in DisconnectionRequest() local
74 pending_command.source_cid_ = scid; in DisconnectionRequest()
76 return pending_command; in DisconnectionRequest()
85 PendingCommand pending_command; in ConnectionParameterUpdate() local
[all …]
H A Dsignalling_manager.cc72 PendingCommand pending_command = PendingCommand::CreditBasedConnectionRequest( in on_security_result_for_outgoing() local
75 pending_commands_.push(pending_command); in on_security_result_for_outgoing()
82 …PendingCommand pending_command = PendingCommand::DisconnectionRequest(next_signal_id_, scid, dcid); in SendDisconnectRequest() local
84 pending_commands_.push(pending_command); in SendDisconnectRequest()
92 PendingCommand pending_command = PendingCommand::ConnectionParameterUpdate( in SendConnectionParameterUpdateRequest() local
95 pending_commands_.push(pending_command); in SendConnectionParameterUpdateRequest()
/aosp12/system/bt/gd/l2cap/classic/internal/
H A Dsignalling_manager.cc126 …PendingCommand pending_command = {next_signal_id_, CommandCode::CONNECTION_REQUEST, psm, local_cid… in on_security_result_for_outgoing() local
128 pending_commands_.push(std::move(pending_command)); in on_security_result_for_outgoing()
136 …PendingCommand pending_command = {next_signal_id_, CommandCode::CONFIGURATION_REQUEST, {}, {}, re… in send_configuration_request() local
139 pending_commands_.push(std::move(pending_command)); in send_configuration_request()
146 PendingCommand pending_command = { in SendDisconnectionRequest() local
149 pending_commands_.push(std::move(pending_command)); in SendDisconnectionRequest()
156 …PendingCommand pending_command = {next_signal_id_, CommandCode::INFORMATION_REQUEST, {}, {}, {}, t… in SendInformationRequest() local
158 pending_commands_.push(std::move(pending_command)); in SendInformationRequest()