Home
last modified time | relevance | path

Searched refs:getApFactoryMacAddress (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1079 when(mWifiVendorHal.getApFactoryMacAddress(any())).thenReturn(MacAddress.BROADCAST_ADDRESS); in testGetApFactoryMacAddress()
1080 assertNotNull(mWifiNative.getApFactoryMacAddress(WIFI_IFACE_NAME)); in testGetApFactoryMacAddress()
1081 verify(mWifiVendorHal).getApFactoryMacAddress(any()); in testGetApFactoryMacAddress()
DSoftApManagerTest.java269 when(mWifiNative.getApFactoryMacAddress(any())).thenReturn(TEST_INTERFACE_MAC_ADDRESS); in setUp()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiNative.java2035 public MacAddress getApFactoryMacAddress(@NonNull String interfaceName) {
2036 return mWifiVendorHal.getApFactoryMacAddress(interfaceName);
DWifiVendorHal.java1757 MacAddress mac = getApFactoryMacAddress(ifaceName); in resetApMacToFactoryMacAddress()
1851 public MacAddress getApFactoryMacAddress(@NonNull String ifaceName) { in getApFactoryMacAddress() method in WifiVendorHal