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()
125 pending_links_.erase(connecting_address_with_type); in OnLeConnectSuccess()
132 auto pending_link = pending_links_.find(address_with_type); in OnLeConnectFail()
133 if (pending_link == pending_links_.end()) { in OnLeConnectFail()
145 pending_links_.erase(pending_link); in OnLeConnectFail()
Dlink_manager.h111 std::unordered_map<hci::AddressWithType, PendingLink> pending_links_; variable
/system/bt/gd/l2cap/classic/internal/
Dlink_manager.cc74 auto pending_link = pending_links_.find(device); in ConnectFixedChannelServices()
75 if (pending_link == pending_links_.end()) { in ConnectFixedChannelServices()
77 pending_links_.try_emplace(device); in ConnectFixedChannelServices()
78 pending_link = pending_links_.find(device); in ConnectFixedChannelServices()
284 pending_links_.erase(device); in OnConnectSuccess()
289 auto pending_link = pending_links_.find(device); in OnConnectFail()
290 if (pending_link == pending_links_.end()) { in OnConnectFail()
314 pending_links_.erase(pending_link); in OnConnectFail()
Dlink_manager.h139 std::unordered_map<hci::Address, PendingLink> pending_links_; variable