Home
last modified time | relevance | path

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

/system/bt/gd/l2cap/le/internal/
Dlink_manager.cc74 auto pending_link = pending_links_.find(address_with_type); in ConnectFixedChannelServices() local
75 if (pending_link == pending_links_.end()) { in ConnectFixedChannelServices()
78 pending_link = pending_links_.find(address_with_type); in ConnectFixedChannelServices()
80pending_link->second.pending_fixed_channel_connections_.push_back(std::move(pending_fixed_channel_… in ConnectFixedChannelServices()
131 auto pending_link = pending_links_.find(connecting_address_with_type); in OnLeConnectSuccess() local
132 if (pending_link == pending_links_.end()) { in OnLeConnectSuccess()
137 pending_links_.erase(pending_link); in OnLeConnectSuccess()
142 auto pending_link = pending_links_.find(address_with_type); in OnLeConnectFail() local
143 if (pending_link == pending_links_.end()) { in OnLeConnectFail()
148 …for (auto& pending_fixed_channel_connection : pending_link->second.pending_fixed_channel_connectio… in OnLeConnectFail()
[all …]
/system/bt/gd/l2cap/classic/internal/
Dlink_manager.cc76 auto pending_link = pending_links_.find(device); in ConnectFixedChannelServices() local
77 if (pending_link == pending_links_.end()) { in ConnectFixedChannelServices()
80 pending_link = pending_links_.find(device); in ConnectFixedChannelServices()
82pending_link->second.pending_fixed_channel_connections_.push_back(std::move(pending_fixed_channel_… in ConnectFixedChannelServices()
163 auto pending_link = pending_links_.find(device); in OnConnectSuccess() local
164 if (pending_link == pending_links_.end()) { in OnConnectSuccess()
169 pending_links_.erase(pending_link); in OnConnectSuccess()
174 auto pending_link = pending_links_.find(device); in OnConnectFail() local
175 if (pending_link == pending_links_.end()) { in OnConnectFail()
191 …for (auto& pending_fixed_channel_connection : pending_link->second.pending_fixed_channel_connectio… in OnConnectFail()
[all …]