Searched refs:tearDownApInterface (Results 1 – 7 of 7) sorted by relevance
186 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()
188 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()
39 boolean tearDownApInterface(@utf8InCpp String iface_name); in tearDownApInterface() method
71 EXPECT_TRUE(service->tearDownApInterface(kInterfaceName, &success).isOk()); in TEST()
91 android::binder::Status tearDownApInterface(
151 Status Server::tearDownApInterface(const std::string& iface_name, in tearDownApInterface() function in android::wificond::Server
805 success = mWificond.tearDownApInterface(ifaceName); in tearDownSoftApInterface()