Home
last modified time | relevance | path

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

/system/bt/gd/l2cap/le/
Dlink_options.cc30 : acl_connection_(acl_connection), link_(link), l2cap_handler_(l2cap_handler) {} in LinkOptions()
33 return acl_connection_->GetRole(); in GetRole()
37 return acl_connection_->GetHandle(); in GetHandle()
41 return acl_connection_->GetLocalAddress(); in GetLocalAddress()
Dlink_options.h79 hci::acl_manager::LeAclConnection* acl_connection_ = nullptr;
/system/bt/gd/l2cap/le/internal/
Dlink.cc42 : l2cap_handler_(l2cap_handler), acl_connection_(std::move(acl_connection)), in Link()
43 data_pipeline_manager_(l2cap_handler, this, acl_connection_->GetAclQueueEnd()), in Link()
49 ASSERT(acl_connection_ != nullptr); in Link()
53 acl_connection_->RegisterCallbacks(this, l2cap_handler_); in Link()
104 acl_connection_->UpdateLocalAddress(address_with_type); in OnLocalAddressUpdate()
108 acl_connection_->Disconnect(hci::DisconnectReason::REMOTE_USER_TERMINATED_CONNECTION); in Disconnect()
114acl_connection_->LeConnectionUpdate(conn_interval_min, conn_interval_max, conn_latency, supervisio… in UpdateConnectionParameterFromRemote()
147 if (acl_connection_->GetRole() == hci::Role::PERIPHERAL) { in SendConnectionParameterUpdate()
153acl_connection_->LeConnectionUpdate(conn_interval_min, conn_interval_max, conn_latency, supervisio… in SendConnectionParameterUpdate()
283 acl_connection_->ReadRemoteVersionInformation(); in ReadRemoteVersionInformation()
Dlink.h55 return acl_connection_->GetRemoteAddress(); in GetDevice()
66 return acl_connection_->GetRole(); in GetRole()
70 return acl_connection_.get(); in GetAclConnection()
158 std::unique_ptr<hci::acl_manager::LeAclConnection> acl_connection_; variable
165 LinkOptions link_options_{acl_connection_.get(), this, l2cap_handler_};
/system/bt/gd/l2cap/classic/internal/
Dlink.cc47 acl_connection_(std::move(acl_connection)), in Link()
48 data_pipeline_manager_(l2cap_handler, this, acl_connection_->GetAclQueueEnd()), in Link()
60 acl_handle_(acl_connection_->GetHandle()) { in Link()
62 ASSERT(acl_connection_ != nullptr); in Link()
66 acl_connection_->RegisterCallbacks(this, l2cap_handler_); in Link()
85 acl_connection_->Disconnect(hci::DisconnectReason::REMOTE_USER_TERMINATED_CONNECTION); in Disconnect()
90 acl_connection_->SetConnectionEncryption(hci::Enable::ENABLED); in Encrypt()
97 acl_connection_->AuthenticationRequested(); in Authenticate()
106 acl_connection_->ReadRemoteVersionInformation(); in ReadRemoteVersionInformation()
110 acl_connection_->ReadRemoteSupportedFeatures(); in ReadRemoteSupportedFeatures()
[all …]
Dlink.h55 return {acl_connection_->GetAddress(), hci::AddressType::PUBLIC_DEVICE_ADDRESS}; in GetDevice()
214 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::__anon00f1d3110111::L2capClassicLinkTest