Searched refs:resetToFactoryMacAddress (Results 1 – 6 of 6) sorted by relevance
137 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()
111 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIface113 () -> mWifiApIface.resetToFactoryMacAddress()); in resetToFactoryMacAddress()
137 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIfaceAidlImpl142 mWifiApIface.resetToFactoryMacAddress(); in resetToFactoryMacAddress()
61 boolean resetToFactoryMacAddress(); in resetToFactoryMacAddress() method
85 public boolean resetToFactoryMacAddress() { in resetToFactoryMacAddress() method in WifiApIfaceHidlImpl176 WifiStatus status = ap15.resetToFactoryMacAddress(); in resetToFactoryMacAddressInternal()
950 return iface.resetToFactoryMacAddress(); in resetApMacToFactoryMacAddress()