Home
last modified time | relevance | path

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

/system/bt/gd/l2cap/le/internal/
Dlink_manager.cc75 auto pending_link = pending_links_.find(address_with_type); in ConnectFixedChannelServices()
76 if (pending_link == pending_links_.end()) { in ConnectFixedChannelServices()
78 pending_links_.try_emplace(address_with_type); in ConnectFixedChannelServices()
79 pending_link = pending_links_.find(address_with_type); in ConnectFixedChannelServices()
129 pending_links_.erase(connecting_address_with_type); in OnLeConnectSuccess()
134 auto pending_link = pending_links_.find(address_with_type); in OnLeConnectFail()
135 if (pending_link == pending_links_.end()) { in OnLeConnectFail()
147 pending_links_.erase(pending_link); in OnLeConnectFail()
Dlink_manager.h87 std::unordered_map<hci::AddressWithType, PendingLink> pending_links_; variable
/system/bt/gd/l2cap/classic/internal/
Dlink_manager.cc73 auto pending_link = pending_links_.find(device); in ConnectFixedChannelServices()
74 if (pending_link == pending_links_.end()) { in ConnectFixedChannelServices()
76 pending_links_.try_emplace(device); in ConnectFixedChannelServices()
77 pending_link = pending_links_.find(device); in ConnectFixedChannelServices()
236 pending_links_.erase(device); in OnConnectSuccess()
241 auto pending_link = pending_links_.find(device); in OnConnectFail()
242 if (pending_link == pending_links_.end()) { in OnConnectFail()
264 pending_links_.erase(pending_link); in OnConnectFail()
Dlink_manager.h98 std::unordered_map<hci::Address, PendingLink> pending_links_; variable