Home
last modified time | relevance | path

Searched refs:isApSetMacAddressSupported (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1164 mWifiNative.isApSetMacAddressSupported(WIFI_IFACE_NAME); in testIsApSetMacAddressSupported()
1165 verify(mWifiVendorHal).isApSetMacAddressSupported(WIFI_IFACE_NAME); in testIsApSetMacAddressSupported()
DSoftApManagerTest.java330 when(mWifiNative.isApSetMacAddressSupported(any())).thenReturn(true); in setUp()
2255 when(mWifiNative.isApSetMacAddressSupported(any())).thenReturn(false); in setsCustomMacWhenSetMacNotSupport()
2331 when(mWifiNative.isApSetMacAddressSupported(any())).thenReturn(false); in setRandomMacWhenSetMacNotsupport()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiVendorHal.java974 public boolean isApSetMacAddressSupported(@NonNull String ifaceName) { in isApSetMacAddressSupported() method in WifiVendorHal
DWifiNative.java2433 public boolean isApSetMacAddressSupported(@NonNull String interfaceName) {
2434 return mWifiVendorHal.isApSetMacAddressSupported(interfaceName);
DSoftApManager.java774 if (mWifiNative.isApSetMacAddressSupported(mApInterfaceName)) { in setMacAddress()