Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/hci/facade/
Dle_acl_manager_facade.cc100 per_connection_events_.emplace( in CreateConnection()
104 return per_connection_events_[peer]->RunLoop(context, writer); in CreateConnection()
121 if (per_connection_events_.count(peer) == 0) { in CancelConnection()
308 if (per_connection_events_.find(peer) == per_connection_events_.end()) { in OnLeConnectSuccess()
309 per_connection_events_.emplace(peer, incoming_connection_events_); in OnLeConnectSuccess()
311 per_connection_events_[peer] = incoming_connection_events_; in OnLeConnectSuccess()
316 per_connection_events_.emplace(peer, direct_connection_events_); in OnLeConnectSuccess()
320 per_connection_events_.count(peer) > 0, in OnLeConnectSuccess()
328 std::forward_as_tuple(handle, shared_connection, per_connection_events_[peer])); in OnLeConnectSuccess()
339 per_connection_events_[peer]->OnIncomingEvent(success); in OnLeConnectSuccess()
[all …]
Dacl_manager_facade.cc75 if (per_connection_events_.size() > current_connection_request_) { in CreateConnection()
78per_connection_events_.emplace_back(std::make_unique<::bluetooth::grpc::GrpcEventQueue<ConnectionE… in CreateConnection()
80 return per_connection_events_[current_connection_request_]->RunLoop(context, writer); in CreateConnection()
283 if (per_connection_events_.size() > current_connection_request_) { in FetchIncomingConnection()
286per_connection_events_.emplace_back(std::make_unique<::bluetooth::grpc::GrpcEventQueue<ConnectionE… in FetchIncomingConnection()
288 return per_connection_events_[current_connection_request_]->RunLoop(context, writer); in FetchIncomingConnection()
372 …std::forward_as_tuple(handle, shared_connection, per_connection_events_[current_connection_request… in OnConnectSuccess()
383 per_connection_events_[current_connection_request_]->OnIncomingEvent(success); in OnConnectSuccess()
397 per_connection_events_[current_connection_request_]->OnIncomingEvent(fail); in OnConnectFail()
588 …vector<std::shared_ptr<::bluetooth::grpc::GrpcEventQueue<ConnectionEvent>>> per_connection_events_; member in bluetooth::hci::facade::AclManagerFacadeService