Home
last modified time | relevance | path

Searched refs:pending_dynamic_channels_ (Results 1 – 4 of 4) sorted by relevance

/system/bt/gd/l2cap/le/internal/
Dlink_manager.cc91pending_dynamic_channels_[device].push_back(std::make_pair(psm, std::move(pending_dynamic_channel_… in ConnectDynamicChannelServices()
195 if (pending_dynamic_channels_.find(address_with_type) != pending_dynamic_channels_.end()) { in OnReadRemoteVersionInformationComplete()
196 for (auto& psm_callback : pending_dynamic_channels_[address_with_type]) { in OnReadRemoteVersionInformationComplete()
199 pending_dynamic_channels_.erase(address_with_type); in OnReadRemoteVersionInformationComplete()
Dlink_manager.h114 pending_dynamic_channels_; variable
/system/bt/gd/l2cap/classic/internal/
Dlink_manager.cc93 if (pending_dynamic_channels_.find(device) != pending_dynamic_channels_.end()) { in ConnectDynamicChannelServices()
94 pending_dynamic_channels_[device].push_back(psm); in ConnectDynamicChannelServices()
97 pending_dynamic_channels_[device] = {psm}; in ConnectDynamicChannelServices()
262 if (pending_dynamic_channels_.find(device) != pending_dynamic_channels_.end()) { in OnConnectSuccess()
263 auto psm_list = pending_dynamic_channels_[device]; in OnConnectSuccess()
266 pending_dynamic_channels_.erase(device); in OnConnectSuccess()
302 pending_dynamic_channels_.erase(device); in OnConnectFail()
Dlink_manager.h141 std::unordered_map<hci::Address, std::list<Psm>> pending_dynamic_channels_; variable