Home
last modified time | relevance | path

Searched refs:GetMacAddress (Results 1 – 17 of 17) sorted by relevance

/system/bt/gd/hci/facade/
Dcontroller_facade.cc43 …::grpc::Status GetMacAddress(::grpc::ServerContext* context, const ::google::protobuf::Empty* requ… in GetMacAddress() function in bluetooth::hci::facade::ControllerFacadeService
45 Address local_address = controller_->GetMacAddress(); in GetMacAddress()
Dcontroller_facade.proto8 rpc GetMacAddress(google.protobuf.Empty) returns (AddressMsg) {} rpc
/system/bt/gd/facade/
Dread_only_property_server.cc31 auto address = controller_->GetMacAddress().ToString(); in ReadLocalAddress()
/system/connectivity/wificond/
Dclient_interface_binder.cpp67 const std::array<uint8_t, ETH_ALEN>& mac = impl_->GetMacAddress(); in getMacAddress()
Dclient_interface_impl.h79 const std::array<uint8_t, ETH_ALEN>& GetMacAddress();
Dclient_interface_impl.cpp241 const std::array<uint8_t, ETH_ALEN>& ClientInterfaceImpl::GetMacAddress() { in GetMacAddress() function in android::wificond::ClientInterfaceImpl
/system/bt/gd/hci/
Dcontroller_mock.h90 MOCK_METHOD(Address, GetMacAddress, (), (const));
Dcontroller.h101 virtual Address GetMacAddress() const;
Dcontroller_test.cc299 ASSERT_EQ(controller_->GetMacAddress(), Address::kAny); in TEST_F()
Dcontroller.cc953 Address Controller::GetMacAddress() const { in GetMacAddress() function in bluetooth::hci::Controller
Dle_advertising_manager.cc322 AddressWithType(controller_->GetMacAddress(), AddressType::PUBLIC_DEVICE_ADDRESS); in create_extended_advertiser()
/system/bt/main/shim/
Dcontroller.cc88 std::string string_address = GetController()->GetMacAddress().ToString(); in start_up()
/system/bt/gd/security/cert/
Dsecurity_test.py97 self.dut.address = self.dut.hci_controller.GetMacAddress(empty_proto.Empty()).address
99 self.cert.address = self.cert.hci_controller.GetMacAddress(empty_proto.Empty()).address
Dle_security_test.py81 raw_addr = self.dut.hci_controller.GetMacAddress(empty_proto.Empty()).address
91 address=self.cert.hci_controller.GetMacAddress(empty_proto.Empty()).address),
/system/bt/gd/hci/acl_manager/
Dle_impl.h71 controller->GetMacAddress(), in le_impl()
/system/bt/gd/cert/
Dgd_device.py246 …self.hci_controller.GetMacAddressSimple = lambda: self.hci_controller.GetMacAddress(empty_proto.Em…
/system/bt/gd/security/internal/
Dsecurity_manager_impl.cc90 Address controllerAddress = controller_->GetMacAddress(); in Init()