Home
last modified time | relevance | path

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

/aosp12/system/bt/gd/l2cap/le/
H A Dfacade.cc67 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenDynamicChannel() local
68 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenDynamicChannel()
75 service_helper->second->Connect(peer); in OpenDynamicChannel()
83 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in CloseDynamicChannel() local
84 if (service_helper == dynamic_channel_helper_map_.end()) { in CloseDynamicChannel()
87 if (service_helper->second->channel_ == nullptr) { in CloseDynamicChannel()
96 service_helper->second->channel_->Close(); in CloseDynamicChannel()
110 if (service_helper == dynamic_channel_helper_map_.end()) { in SetDynamicChannel()
260 auto service_helper = fixed_channel_helper_map_.find(request->cid()); in SetFixedChannel() local
261 if (service_helper == fixed_channel_helper_map_.end()) { in SetFixedChannel()
[all …]
/aosp12/system/bt/gd/l2cap/classic/
H A Dfacade.cc76 auto service_helper = dynamic_channel_helper_map_.find(request->psm()); in OpenChannel() local
77 if (service_helper == dynamic_channel_helper_map_.end()) { in OpenChannel()