Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dacl_connection_handler.cc47 acl_connections_.clear(); in Reset()
51 return acl_connections_.count(handle) != 0; in HasHandle()
105 for (auto pair : acl_connections_) { in CreatePendingLeConnection()
149 acl_connections_.emplace( in CreateConnection()
167 acl_connections_.emplace(handle, in CreateLeConnection()
187 acl_connections_.erase(handle); in Disconnect()
194 for (auto pair : acl_connections_) { in GetHandle()
204 for (auto pair : acl_connections_) { in GetHandleOnlyAddress()
214 for (auto const& [handle, connection] : acl_connections_) { in GetAclConnectionHandle()
225 return acl_connections_.at(handle); in GetAclConnection()
[all …]
Dacl_connection_handler.h136 std::unordered_map<uint16_t, AclConnection> acl_connections_;
/packages/modules/Bluetooth/system/gd/hci/facade/
Dle_acl_manager_facade.cc64 for (auto& conn : acl_connections_) { in ~LeAclManagerFacadeService()
135 auto connection = acl_connections_.find(request->handle()); in Disconnect()
136 if (connection == acl_connections_.end()) { in Disconnect()
152 connection = acl_connections_.find(view.GetConnectionHandle()); \
153 if (connection == acl_connections_.end()) { \
241 auto connection = acl_connections_.find(request->handle()); in SendAclData()
242 if (connection == acl_connections_.end()) { in SendAclData()
261 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
262 log::assert_that(connection != acl_connections_.end(), "handle {}", request->handle()); in enqueue_packet()
273 auto connection = acl_connections_.find(request->handle()); in FetchAclData()
[all …]
Dacl_manager_facade.cc60 for (auto& connection : acl_connections_) { in ~AclManagerFacadeService()
89 auto connection = acl_connections_.find(request->handle()); in Disconnect()
90 if (connection == acl_connections_.end()) { in Disconnect()
105 auto connection = acl_connections_.find(request->handle()); in AuthenticationRequested()
106 if (connection == acl_connections_.end()) { in AuthenticationRequested()
122 connection = acl_connections_.find(view.GetConnectionHandle()); \
123 if (connection == acl_connections_.end()) { \
300 auto connection = acl_connections_.find(request->handle()); in SendAclData()
301 if (connection == acl_connections_.end()) { in SendAclData()
321 auto connection = acl_connections_.find(request->handle()); in enqueue_packet()
[all …]
/packages/modules/Bluetooth/system/gd/hci/acl_manager/
Dclassic_impl.h141 std::map<uint16_t, acl_connection> acl_connections_;
144 auto connection = acl_connections_.find(handle); in find_callbacks()
145 if (connection == acl_connections_.end()) return nullptr; in find_callbacks()
149 for (auto& connection_pair : acl_connections_) { in find_callbacks()
157 auto connection = acl_connections_.find(handle); in remove()
158 if (connection != acl_connections_.end()) { in remove()
160 acl_connections_.erase(handle); in remove()
168 return acl_connections_.empty(); in is_empty()
172 acl_connections_.clear(); in reset()
198 auto connection = acl_connections_.find(handle); in send_packet_upward()
[all …]