Searched refs:tearDownClientInterface (Results 1 – 3 of 3) sorted by relevance
188 when(mWificond.tearDownClientInterface(any())).thenReturn(true); in setUp()221 when(mWificond.tearDownClientInterface(TEST_INTERFACE_NAME)).thenReturn(true); in testTeardownClientInterface()223 assertTrue(mWificondControl.tearDownClientInterface(TEST_INTERFACE_NAME)); in testTeardownClientInterface()226 verify(mWificond).tearDownClientInterface(TEST_INTERFACE_NAME); in testTeardownClientInterface()234 when(mWificond.tearDownClientInterface(TEST_INTERFACE_NAME1)).thenReturn(true); in testTeardownClientInterfaceOnInvalidIface()236 assertFalse(mWificondControl.tearDownClientInterface(TEST_INTERFACE_NAME1)); in testTeardownClientInterfaceOnInvalidIface()239 verify(mWificond, never()).tearDownClientInterface(any()); in testTeardownClientInterfaceOnInvalidIface()247 when(mWificond.tearDownClientInterface(TEST_INTERFACE_NAME)).thenReturn(true); in testTeardownClientInterfaceFailDueToExceptionScannerUnsubscribe()250 assertFalse(mWificondControl.tearDownClientInterface(TEST_INTERFACE_NAME)); in testTeardownClientInterfaceFailDueToExceptionScannerUnsubscribe()253 verify(mWificond, never()).tearDownClientInterface(TEST_INTERFACE_NAME); in testTeardownClientInterfaceFailDueToExceptionScannerUnsubscribe()[all …]
764 public boolean tearDownClientInterface(@NonNull String ifaceName) { in tearDownClientInterface() method in WifiNl80211Manager787 success = mWificond.tearDownClientInterface(ifaceName); in tearDownClientInterface()
10167 method public boolean tearDownClientInterface(@NonNull String);