Home
last modified time | relevance | path

Searched refs:dynamic_channel_helper_map_ (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/classic/
Dfacade.cc74 if (dynamic_channel_helper_map_.find(request->psm()) == dynamic_channel_helper_map_.end()) { in SendDynamicChannelPacket()
78 if (!dynamic_channel_helper_map_[request->psm()]->SendPacket(packet)) { in SendDynamicChannelPacket()
88 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenChannel()
89 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenChannel()
96 dynamic_channel_helper_map_[request->psm()]->Connect(peer); in OpenChannel()
105 if (dynamic_channel_helper_map_.find(request->psm()) == dynamic_channel_helper_map_.end()) { in CloseChannel()
108 dynamic_channel_helper_map_[psm]->Disconnect(); in CloseChannel()
125 dynamic_channel_helper_map_.emplace( in SetDynamicChannel()
136 if (dynamic_channel_helper_map_.find(request->psm()) == dynamic_channel_helper_map_.end()) { in SetTrafficPaused()
140 dynamic_channel_helper_map_[psm]->SuspendDequeue(); in SetTrafficPaused()
[all …]
/packages/modules/Bluetooth/system/gd/l2cap/le/
Dfacade.cc75 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenDynamicChannel()
76 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenDynamicChannel()
96 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in CloseDynamicChannel()
97 if (service_helper == dynamic_channel_helper_map_.end()) { in CloseDynamicChannel()
121dynamic_channel_helper_map_.emplace(request->psm(), std::make_unique<L2capDynamicChannelHelper>( in SetDynamicChannel()
126 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in SetDynamicChannel()
127 if (service_helper == dynamic_channel_helper_map_.end()) { in SetDynamicChannel()
140 if (dynamic_channel_helper_map_.find(request->psm()) == dynamic_channel_helper_map_.end()) { in SendDynamicChannelPacket()
144 if (!dynamic_channel_helper_map_[request->psm()]->SendPacket(packet)) { in SendDynamicChannelPacket()
428 if (dynamic_channel_helper_map_.empty()) { in SendConnectionParameterUpdate()
[all …]