• Home
  • Raw
  • Download

Lines Matching refs:local_cid

144 void Link::SendConnectionRequest(Psm psm, Cid local_cid) {  in SendConnectionRequest()  argument
145 signalling_manager_.SendConnectionRequest(psm, local_cid); in SendConnectionRequest()
148 void Link::SendConnectionRequest(Psm psm, Cid local_cid, in SendConnectionRequest() argument
156 dynamic_channel_allocator_.FreeChannel(local_cid); in SendConnectionRequest()
166 dynamic_channel_allocator_.FreeChannel(local_cid); in SendConnectionRequest()
169 …local_cid_to_pending_dynamic_channel_connection_map_[local_cid] = std::move(pending_dynamic_channe… in SendConnectionRequest()
170 signalling_manager_.SendConnectionRequest(psm, local_cid); in SendConnectionRequest()
174 void Link::SetChannelTxPriority(Cid local_cid, bool high_priority) { in SetChannelTxPriority() argument
175 data_pipeline_manager_.SetChannelTxPriority(local_cid, high_priority); in SetChannelTxPriority()
196 for (auto local_cid : pending_outgoing_configuration_request_list_) { in send_pending_configuration_requests() local
197 signalling_manager_.SendInitialConfigRequest(local_cid); in send_pending_configuration_requests()
202 void Link::OnOutgoingConnectionRequestFail(Cid local_cid, ConnectionResult result) { in OnOutgoingConnectionRequestFail() argument
203 if (local_cid_to_pending_dynamic_channel_connection_map_.find(local_cid) != in OnOutgoingConnectionRequestFail()
205 NotifyChannelFail(local_cid, result); in OnOutgoingConnectionRequestFail()
207 dynamic_channel_allocator_.FreeChannel(local_cid); in OnOutgoingConnectionRequestFail()
210 void Link::SendInitialConfigRequestOrQueue(Cid local_cid) { in SendInitialConfigRequestOrQueue() argument
212 signalling_manager_.SendInitialConfigRequest(local_cid); in SendInitialConfigRequestOrQueue()
214 pending_outgoing_configuration_request_list_.push_back(local_cid); in SendInitialConfigRequestOrQueue()
218 void Link::SendDisconnectionRequest(Cid local_cid, Cid remote_cid) { in SendDisconnectionRequest() argument
219 signalling_manager_.SendDisconnectionRequest(local_cid, remote_cid); in SendDisconnectionRequest()
460 void Link::OnPendingPacketChange(Cid local_cid, bool has_packet) { in OnPendingPacketChange() argument