Home
last modified time | relevance | path

Searched refs:acl_connection_ (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/classic/internal/
Dlink.cc49 acl_connection_(std::move(acl_connection)), in Link()
50 data_pipeline_manager_(l2cap_handler, this, acl_connection_->GetAclQueueEnd()), in Link()
62 acl_handle_(acl_connection_->GetHandle()) { in Link()
64 log::assert_that(acl_connection_ != nullptr, "assert failed: acl_connection_ != nullptr"); in Link()
68 acl_connection_->RegisterCallbacks(this, l2cap_handler_); in Link()
87 acl_connection_->Disconnect(hci::DisconnectReason::REMOTE_USER_TERMINATED_CONNECTION); in Disconnect()
92 acl_connection_->SetConnectionEncryption(hci::Enable::ENABLED); in Encrypt()
99 acl_connection_->AuthenticationRequested(); in Authenticate()
108 acl_connection_->ReadRemoteVersionInformation(); in ReadRemoteVersionInformation()
112 acl_connection_->ReadRemoteSupportedFeatures(); in ReadRemoteSupportedFeatures()
[all …]
Dlink.h61 return {acl_connection_->GetAddress(), hci::AddressType::PUBLIC_DEVICE_ADDRESS}; in GetDevice()
228 std::unique_ptr<hci::acl_manager::ClassicAclConnection> acl_connection_; variable
Dlink_test.cc102 std::unique_ptr<MockClassicAclConnection> acl_connection_; member in bluetooth::l2cap::classic::internal::__anon086815270111::L2capClassicLinkTest
/packages/modules/Bluetooth/system/gd/l2cap/le/
Dlink_options.cc32 : acl_connection_(acl_connection), link_(link), l2cap_handler_(l2cap_handler) {} in LinkOptions()
35 return acl_connection_->GetRole(); in GetRole()
39 return acl_connection_->GetHandle(); in GetHandle()
43 return acl_connection_->GetLocalAddress(); in GetLocalAddress()
Dlink_options.h79 hci::acl_manager::LeAclConnection* acl_connection_ = nullptr;
/packages/modules/Bluetooth/system/gd/l2cap/le/internal/
Dlink.cc48 acl_connection_(std::move(acl_connection)), in Link()
49 data_pipeline_manager_(l2cap_handler, this, acl_connection_->GetAclQueueEnd()), in Link()
60 log::assert_that(acl_connection_ != nullptr, "assert failed: acl_connection_ != nullptr"); in Link()
64 acl_connection_->RegisterCallbacks(this, l2cap_handler_); in Link()
149 acl_connection_->Disconnect(hci::DisconnectReason::REMOTE_USER_TERMINATED_CONNECTION); in Disconnect()
155acl_connection_->LeConnectionUpdate(conn_interval_min, conn_interval_max, conn_latency, supervisio… in UpdateConnectionParameterFromRemote()
188 if (acl_connection_->GetRole() == hci::Role::PERIPHERAL) { in SendConnectionParameterUpdate()
194acl_connection_->LeConnectionUpdate(conn_interval_min, conn_interval_max, conn_latency, supervisio… in SendConnectionParameterUpdate()
331 acl_connection_->ReadRemoteVersionInformation(); in ReadRemoteVersionInformation()
Dlink.h61 return acl_connection_->GetRemoteAddress(); in GetDevice()
72 return acl_connection_->GetRole(); in GetRole()
76 return acl_connection_.get(); in GetAclConnection()
180 std::unique_ptr<hci::acl_manager::LeAclConnection> acl_connection_; variable
187 LinkOptions link_options_{acl_connection_.get(), this, l2cap_handler_};