• Home
  • Raw
  • Download

Lines Matching refs:Acl

674 struct shim::legacy::Acl::impl {
1035 void shim::legacy::Acl::Dump(int fd) const { in Dump()
1043 shim::legacy::Acl::Acl(os::Handler* handler, in Acl() function in shim::legacy::Acl
1049 pimpl_ = std::make_unique<Acl::impl>(max_acceptlist_size); in Acl()
1053 handler->BindOn(this, &Acl::on_incoming_acl_credits)); in Acl()
1064 shim::legacy::Acl::~Acl() { in ~Acl()
1073 bool shim::legacy::Acl::CheckForOrphanedAclConnections() const { in CheckForOrphanedAclConnections()
1106 void shim::legacy::Acl::on_incoming_acl_credits(uint16_t handle, in on_incoming_acl_credits()
1111 void shim::legacy::Acl::write_data_sync( in write_data_sync()
1122 void shim::legacy::Acl::WriteData(HciHandle handle, in WriteData()
1124 handler_->Post(common::BindOnce(&Acl::write_data_sync, in WriteData()
1129 void shim::legacy::Acl::CreateClassicConnection(const hci::Address& address) { in CreateClassicConnection()
1137 void shim::legacy::Acl::CancelClassicConnection(const hci::Address& address) { in CancelClassicConnection()
1145 void shim::legacy::Acl::AcceptLeConnectionFrom( in AcceptLeConnectionFrom()
1148 handler_->CallOn(pimpl_.get(), &Acl::impl::accept_le_connection_from, in AcceptLeConnectionFrom()
1152 void shim::legacy::Acl::IgnoreLeConnectionFrom( in IgnoreLeConnectionFrom()
1154 handler_->CallOn(pimpl_.get(), &Acl::impl::ignore_le_connection_from, in IgnoreLeConnectionFrom()
1158 void shim::legacy::Acl::OnClassicLinkDisconnected(HciHandle handle, in OnClassicLinkDisconnected()
1185 bluetooth::hci::AddressWithType shim::legacy::Acl::GetConnectionLocalAddress( in GetConnectionLocalAddress()
1198 void shim::legacy::Acl::OnLeLinkDisconnected(HciHandle handle, in OnLeLinkDisconnected()
1226 void shim::legacy::Acl::OnConnectSuccess( in OnConnectSuccess()
1237 std::bind(&shim::legacy::Acl::OnClassicLinkDisconnected, this, in OnConnectSuccess()
1255 void shim::legacy::Acl::OnConnectFail(hci::Address address, in OnConnectFail()
1267 void shim::legacy::Acl::HACK_OnEscoConnectRequest(hci::Address address, in HACK_OnEscoConnectRequest()
1280 void shim::legacy::Acl::HACK_OnScoConnectRequest(hci::Address address, in HACK_OnScoConnectRequest()
1292 void shim::legacy::Acl::OnLeConnectSuccess( in OnLeConnectSuccess()
1304 std::bind(&shim::legacy::Acl::OnLeLinkDisconnected, this, in OnLeConnectSuccess()
1340 void shim::legacy::Acl::OnLeConnectFail(hci::AddressWithType address_with_type, in OnLeConnectFail()
1359 void shim::legacy::Acl::ConfigureLePrivacy(bool is_le_privacy_enabled) { in ConfigureLePrivacy()
1380 void shim::legacy::Acl::DisconnectClassic(uint16_t handle, tHCI_STATUS reason) { in DisconnectClassic()
1381 handler_->CallOn(pimpl_.get(), &Acl::impl::disconnect_classic, handle, in DisconnectClassic()
1385 void shim::legacy::Acl::DisconnectLe(uint16_t handle, tHCI_STATUS reason) { in DisconnectLe()
1386 handler_->CallOn(pimpl_.get(), &Acl::impl::disconnect_le, handle, reason); in DisconnectLe()
1389 bool shim::legacy::Acl::HoldMode(uint16_t hci_handle, uint16_t max_interval, in HoldMode()
1391 handler_->CallOn(pimpl_.get(), &Acl::impl::HoldMode, hci_handle, max_interval, in HoldMode()
1396 bool shim::legacy::Acl::SniffMode(uint16_t hci_handle, uint16_t max_interval, in SniffMode()
1399 handler_->CallOn(pimpl_.get(), &Acl::impl::SniffMode, hci_handle, in SniffMode()
1404 bool shim::legacy::Acl::ExitSniffMode(uint16_t hci_handle) { in ExitSniffMode()
1405 handler_->CallOn(pimpl_.get(), &Acl::impl::ExitSniffMode, hci_handle); in ExitSniffMode()
1409 bool shim::legacy::Acl::SniffSubrating(uint16_t hci_handle, in SniffSubrating()
1413 handler_->CallOn(pimpl_.get(), &Acl::impl::SniffSubrating, hci_handle, in SniffSubrating()
1419 void shim::legacy::Acl::HACK_OnScoDisconnected(uint16_t handle, in HACK_OnScoDisconnected()
1425 void shim::legacy::Acl::DumpConnectionHistory(int fd) const { in DumpConnectionHistory()
1429 void shim::legacy::Acl::Shutdown() { in Shutdown()
1433 handler_->CallOn(pimpl_.get(), &Acl::impl::ShutdownClassicConnections, in Shutdown()
1440 handler_->CallOn(pimpl_.get(), &Acl::impl::ShutdownLeConnections, in Shutdown()
1449 void shim::legacy::Acl::FinalShutdown() { in FinalShutdown()
1464 handler_->CallOn(pimpl_.get(), &Acl::impl::FinalShutdown, std::move(promise)); in FinalShutdown()
1469 void shim::legacy::Acl::ClearAcceptList() { in ClearAcceptList()
1470 handler_->CallOn(pimpl_.get(), &Acl::impl::clear_acceptlist); in ClearAcceptList()