Home
last modified time | relevance | path

Searched refs:isSetMacAddressSupported (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java873 mWifiNative.isSetMacAddressSupported(WIFI_IFACE_NAME); in testIsSetMacAddressSupported()
874 verify(mWifiVendorHal).isSetMacAddressSupported(WIFI_IFACE_NAME); in testIsSetMacAddressSupported()
DSoftApManagerTest.java149 when(mWifiNative.isSetMacAddressSupported(any())).thenReturn(true); in setUp()
1706 when(mWifiNative.isSetMacAddressSupported(any())).thenReturn(false); in setsCustomMacWhenSetMacNotSupport()
1768 when(mWifiNative.isSetMacAddressSupported(any())).thenReturn(false); in setRandomMacWhenSetMacNotsupport()
DWifiVendorHalTest.java2976 assertTrue(mWifiVendorHal.isSetMacAddressSupported(TEST_IFACE_NAME_1)); in testIsSetMacAddressSupportedWhenV1_4Support()
2986 assertTrue(mWifiVendorHal.isSetMacAddressSupported(TEST_IFACE_NAME)); in testIsSetMacAddressSupportedWhenV1_2Support()
2994 assertFalse(mWifiVendorHal.isSetMacAddressSupported(TEST_IFACE_NAME)); in testIsSetMacAddressSupportedOnOlderHal()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSoftApManager.java352 if (mWifiNative.isSetMacAddressSupported(mApInterfaceName)) { in setMacAddress()
DWifiNative.java1795 public boolean isSetMacAddressSupported(@NonNull String interfaceName) {
1796 return mWifiVendorHal.isSetMacAddressSupported(interfaceName);
DWifiVendorHal.java1339 public boolean isSetMacAddressSupported(@NonNull String ifaceName) { in isSetMacAddressSupported() method in WifiVendorHal