Home
last modified time | relevance | path

Searched refs:acl_connections_ (Results 1 – 6 of 6) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dacl_connection_handler.cc32 if (acl_connections_.count(handle) == 0) { in HasHandle()
39 while (acl_connections_.count(last_handle_) == 1) { in GetUnusedHandle()
77 for (auto pair : acl_connections_) { in CreatePendingLeConnection()
114 acl_connections_.emplace( in CreateConnection()
129 acl_connections_.emplace( in CreateLeConnection()
137 return acl_connections_.erase(handle) > 0; in Disconnect()
141 for (auto pair : acl_connections_) { in GetHandle()
151 for (auto pair : acl_connections_) { in GetHandleOnlyAddress()
161 return acl_connections_.at(handle).GetAddress(); in GetAddress()
166 return acl_connections_.at(handle).GetOwnAddress(); in GetOwnAddress()
[all …]
Dacl_connection_handler.h67 std::unordered_map<uint16_t, AclConnection> acl_connections_;
/system/bt/gd/hci/acl_manager/
Dclassic_impl.h58 acl_connections_.clear(); in ~classic_impl()
113 if (acl_connections_.count(handle) == 1) { in on_classic_disconnect()
114 auto& connection = acl_connections_.find(handle)->second; in on_classic_disconnect()
117 acl_connections_.erase(handle); in on_classic_disconnect()
156 for (const auto& connection : acl_connections_) { in is_classic_link_already_connected()
210 ASSERT(acl_connections_.count(handle) == 0); in on_connection_complete()
212 acl_connections_.emplace(std::piecewise_construct, std::forward_as_tuple(handle), in on_connection_complete()
250 auto& acl_connection = acl_connections_.find(handle)->second; in on_connection_packet_type_changed()
267 auto& acl_connection = acl_connections_.find(handle)->second; in on_master_link_key_complete()
284 auto& acl_connection = acl_connections_.find(handle)->second; in on_authentication_complete()
[all …]
/system/bt/gd/hci/facade/
Dle_acl_manager_facade.cc54 for (auto& conn : acl_connections_) { in ~LeAclManagerFacadeService()
96 auto connection = acl_connections_.find(request->handle()); in Disconnect()
97 if (connection == acl_connections_.end()) { in Disconnect()
113 connection = acl_connections_.find(view.GetConnectionHandle()); \
114 if (connection == acl_connections_.end()) { \
159 auto connection = acl_connections_.find(request->handle()); in SendAclData()
160 if (connection == acl_connections_.end()) { in SendAclData()
179 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
180 ASSERT_LOG(connection != acl_connections_.end(), "handle %d", request->handle()); in enqueue_packet()
190 auto connection = acl_connections_.find(request->handle()); in FetchAclData()
[all …]
Dacl_manager_facade.cc54 for (auto& connection : acl_connections_) { in ~AclManagerFacadeService()
77 auto connection = acl_connections_.find(request->handle()); in Disconnect()
78 if (connection == acl_connections_.end()) { in Disconnect()
90 auto connection = acl_connections_.find(request->handle()); in AuthenticationRequested()
91 if (connection == acl_connections_.end()) { in AuthenticationRequested()
107 connection = acl_connections_.find(view.GetConnectionHandle()); \
108 if (connection == acl_connections_.end()) { \
277 auto connection = acl_connections_.find(request->handle()); in SendAclData()
278 if (connection == acl_connections_.end()) { in SendAclData()
298 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
[all …]
/system/bt/gd/hci/
Dacl_manager.cc92 auto connection_pair = classic_impl_->acl_connections_.find(handle); in dequeue_and_route_acl_packet_to_connection()
93 if (connection_pair != classic_impl_->acl_connections_.end()) { in dequeue_and_route_acl_packet_to_connection()