Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hal/
DWifiApIfaceHidlImplTest.java137 when(mIWifiApIfaceMockV15.resetToFactoryMacAddress()).thenReturn(mWifiStatusSuccess); in testResetToFactoryMacAddressSuccess()
138 assertTrue(mDut.resetToFactoryMacAddress()); in testResetToFactoryMacAddressSuccess()
139 verify(mIWifiApIfaceMockV15).resetToFactoryMacAddress(); in testResetToFactoryMacAddressSuccess()
148 when(mIWifiApIfaceMockV15.resetToFactoryMacAddress()).thenReturn(mWifiStatusFailure); in testResetToFactoryMacAddressFailDueToStatusFailure()
149 assertFalse(mDut.resetToFactoryMacAddress()); in testResetToFactoryMacAddressFailDueToStatusFailure()
150 verify(mIWifiApIfaceMockV15).resetToFactoryMacAddress(); in testResetToFactoryMacAddressFailDueToStatusFailure()
159 doThrow(new RemoteException()).when(mIWifiApIfaceMockV15).resetToFactoryMacAddress(); in testResetToFactoryMacAddressFailDueToRemoteException()
160 assertFalse(mDut.resetToFactoryMacAddress()); in testResetToFactoryMacAddressFailDueToRemoteException()
161 verify(mIWifiApIfaceMockV15).resetToFactoryMacAddress(); in testResetToFactoryMacAddressFailDueToRemoteException()
169 assertFalse(mDut.resetToFactoryMacAddress()); in testResetToFactoryMacAddressDoesNotCrashOnOlderHal()
/packages/modules/Wifi/service/java/com/android/server/wifi/hal/
DWifiApIface.java111 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIface
113 () -> mWifiApIface.resetToFactoryMacAddress()); in resetToFactoryMacAddress()
DWifiApIfaceAidlImpl.java137 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIfaceAidlImpl
142 mWifiApIface.resetToFactoryMacAddress(); in resetToFactoryMacAddress()
DIWifiApIface.java61 boolean resetToFactoryMacAddress(); in resetToFactoryMacAddress() method
DWifiApIfaceHidlImpl.java85 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIfaceHidlImpl
176 WifiStatus status = ap15.resetToFactoryMacAddress(); in resetToFactoryMacAddressInternal()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiVendorHal.java950 return iface.resetToFactoryMacAddress(); in resetApMacToFactoryMacAddress()