Home
last modified time | relevance | path

Searched refs:tearDownApInterface (Results 1 – 7 of 7) sorted by relevance

/aosp12/system/connectivity/wificond/tests/
H A Dserver_unittest.cpp186 EXPECT_TRUE(server_.tearDownApInterface( in TEST_F()
190 EXPECT_TRUE(server_.tearDownApInterface(kFakeInterfaceName, &success).isOk()); in TEST_F()
406 EXPECT_TRUE(server_.tearDownApInterface( in TEST_F()
414 EXPECT_TRUE(server_.tearDownApInterface( in TEST_F()
/aosp12/frameworks/base/wifi/tests/src/android/net/wifi/nl80211/
H A DWifiNl80211ManagerTest.java188 when(mWificond.tearDownApInterface(any())).thenReturn(true); in setUp()
325 when(mWificond.tearDownApInterface(TEST_INTERFACE_NAME)).thenReturn(true); in testTeardownSoftApInterface()
328 verify(mWificond).tearDownApInterface(TEST_INTERFACE_NAME); in testTeardownSoftApInterface()
337 when(mWificond.tearDownApInterface(TEST_INTERFACE_NAME1)).thenReturn(true); in testTeardownSoftApInterfaceOnInvalidIface()
340 verify(mWificond, never()).tearDownApInterface(any()); in testTeardownSoftApInterfaceOnInvalidIface()
349 when(mWificond.tearDownApInterface(TEST_INTERFACE_NAME)).thenReturn(false); in testTeardownSoftApInterfaceErrorWhenWificondFailed()
352 verify(mWificond).tearDownApInterface(TEST_INTERFACE_NAME); in testTeardownSoftApInterfaceErrorWhenWificondFailed()
390 verify(mWificond).tearDownApInterface(TEST_INTERFACE_NAME1); in testTeardownMultipleInterfaces()
/aosp12/system/connectivity/wificond/aidl/android/net/wifi/nl80211/
H A DIWificond.aidl39 boolean tearDownApInterface(@utf8InCpp String iface_name); in tearDownApInterface() method
/aosp12/system/connectivity/wificond/tests/integration/
H A Dap_interface_test.cpp71 EXPECT_TRUE(service->tearDownApInterface(kInterfaceName, &success).isOk()); in TEST()
/aosp12/system/connectivity/wificond/
H A Dserver.h91 android::binder::Status tearDownApInterface(
H A Dserver.cpp151 Status Server::tearDownApInterface(const std::string& iface_name, in tearDownApInterface() function in android::wificond::Server
/aosp12/frameworks/base/wifi/java/src/android/net/wifi/nl80211/
H A DWifiNl80211Manager.java805 success = mWificond.tearDownApInterface(ifaceName); in tearDownSoftApInterface()