Home
last modified time | relevance | path

Searched refs:tearDownSoftApInterface (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWificondControlTest.java405 assertTrue(mWificondControl.tearDownSoftApInterface(TEST_INTERFACE_NAME)); in testTeardownSoftApInterface()
417 assertFalse(mWificondControl.tearDownSoftApInterface(TEST_INTERFACE_NAME1)); in testTeardownSoftApInterfaceOnInvalidIface()
429 assertFalse(mWificondControl.tearDownSoftApInterface(TEST_INTERFACE_NAME)); in testTeardownSoftApInterfaceErrorWhenWificondFailed()
469 assertTrue(mWificondControl.tearDownSoftApInterface(TEST_INTERFACE_NAME1)); in testTeardownMulitpleInterfaces()
DWifiNativeInterfaceManagementTest.java137 when(mWificondControl.tearDownSoftApInterface(any())).thenReturn(true); in setUp()
398 verify(mWificondControl).tearDownSoftApInterface(IFACE_NAME_0); in testTeardownAllInterfaces()
1242 mInOrder.verify(mWificondControl).tearDownSoftApInterface(IFACE_NAME_0); in testSetupSoftApAndClientInterfaceCausesSoftApInterfaceTeardownWithNoVendorHal()
1492 mInOrder.verify(mWificondControl).tearDownSoftApInterface(ifaceName); in validateOnDestroyedSoftApInterface()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java439 public boolean tearDownSoftApInterface(@NonNull String ifaceName) { in tearDownSoftApInterface() method in WificondControl
DWifiNative.java501 if (!mWificondControl.tearDownSoftApInterface(iface.name)) { in onSoftApInterfaceDestroyed()