Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/l2cap/le/
Dfacade.cc75 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenDynamicChannel() local
76 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenDynamicChannel()
86 service_helper->second->Connect(peer); in OpenDynamicChannel()
88 …static_cast<int>(service_helper->second->channel_open_fail_reason_.l2cap_connection_response_resul… in OpenDynamicChannel()
96 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in CloseDynamicChannel() local
97 if (service_helper == dynamic_channel_helper_map_.end()) { in CloseDynamicChannel()
100 if (service_helper->second->channel_ == nullptr) { in CloseDynamicChannel()
103 auto address = service_helper->second->channel_->GetDevice().GetAddress(); in CloseDynamicChannel()
112 service_helper->second->channel_->Close(); in CloseDynamicChannel()
126 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in SetDynamicChannel() local
[all …]
/packages/modules/Bluetooth/system/gd/l2cap/classic/
Dfacade.cc88 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenChannel() local
89 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenChannel()