Lines Matching refs:psm
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
153 pending_dynamic_psm_list_.push_back(psm); in SendConnectionRequest()
170 signalling_manager_.SendConnectionRequest(psm, local_cid); in SendConnectionRequest()
186 auto psm = pending_dynamic_psm_list_.begin(); in connect_to_pending_dynamic_channels() local
188 while (psm != pending_dynamic_psm_list_.end()) { in connect_to_pending_dynamic_channels()
189 SendConnectionRequest(*psm, ReserveDynamicChannel(), std::move(*callback)); in connect_to_pending_dynamic_channels()
190 psm++; in connect_to_pending_dynamic_channels()
226 std::shared_ptr<l2cap::internal::DynamicChannelImpl> Link::AllocateDynamicChannel(Psm psm, Cid remo… in AllocateDynamicChannel() argument
227 auto channel = dynamic_channel_allocator_.AllocateChannel(psm, remote_cid); in AllocateDynamicChannel()
235 …2cap::internal::DynamicChannelImpl> Link::AllocateReservedDynamicChannel(Cid reserved_cid, Psm psm, in AllocateReservedDynamicChannel() argument
237 auto channel = dynamic_channel_allocator_.AllocateReservedChannel(reserved_cid, psm, remote_cid); in AllocateReservedDynamicChannel()
329 listener.psm, in OnEncryptionChange()