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.cc31 return acl_connections_.count(handle) != 0; in HasHandle()
74 for (auto pair : acl_connections_) { in CreatePendingLeConnection()
111 acl_connections_.emplace( in CreateConnection()
126 acl_connections_.emplace( in CreateLeConnection()
134 return acl_connections_.erase(handle) > 0; in Disconnect()
138 for (auto pair : acl_connections_) { in GetHandle()
148 for (auto pair : acl_connections_) { in GetHandleOnlyAddress()
158 return acl_connections_.at(handle).GetAddress(); in GetAddress()
163 return acl_connections_.at(handle).GetOwnAddress(); in GetOwnAddress()
170 acl_connections_.at(handle).Encrypt(); in Encrypt()
[all …]
Dacl_connection_handler.h106 std::unordered_map<uint16_t, AclConnection> acl_connections_;
/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()) { \
160 auto connection = acl_connections_.find(request->handle()); in SendAclData()
161 if (connection == acl_connections_.end()) { in SendAclData()
180 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
181 ASSERT_LOG(connection != acl_connections_.end(), "handle %d", request->handle()); in enqueue_packet()
191 auto connection = acl_connections_.find(request->handle()); in FetchAclData()
[all …]
Dacl_manager_facade.cc56 for (auto& connection : acl_connections_) { in ~AclManagerFacadeService()
79 auto connection = acl_connections_.find(request->handle()); in Disconnect()
80 if (connection == acl_connections_.end()) { in Disconnect()
92 auto connection = acl_connections_.find(request->handle()); in AuthenticationRequested()
93 if (connection == acl_connections_.end()) { in AuthenticationRequested()
109 connection = acl_connections_.find(view.GetConnectionHandle()); \
110 if (connection == acl_connections_.end()) { \
281 auto connection = acl_connections_.find(request->handle()); in SendAclData()
282 if (connection == acl_connections_.end()) { in SendAclData()
302 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
[all …]
/system/bt/gd/hci/acl_manager/
Dclassic_impl.h65 acl_connections_.clear(); in ~classic_impl()
70 auto conn = acl_connections_.find(handle); in get_callbacks()
71 if (conn == acl_connections_.end()) { in get_callbacks()
136 acl_connections_.erase(handle); in on_classic_disconnect()
202 for (const auto& connection : acl_connections_) { in is_classic_link_already_connected()
268 auto conn_pair = acl_connections_.emplace( in on_connection_complete()
519 for (auto& connection_pair : acl_connections_) { in on_role_change()
669 for (auto it = acl_connections_.begin(); it != acl_connections_.end(); it++) { in HACK_get_handle()
688 std::map<uint16_t, acl_connection> acl_connections_; member
/system/bt/gd/hci/
Dacl_manager.cc97 auto connection_pair = classic_impl_->acl_connections_.find(handle); in dequeue_and_route_acl_packet_to_connection()
98 if (connection_pair != classic_impl_->acl_connections_.end()) { in dequeue_and_route_acl_packet_to_connection()