HomeSort by relevance Sort by last modified time
    Searched refs:disableSupplicant (Results 1 - 10 of 10) sorted by null

  /system/connectivity/wificond/aidl/android/net/wifi/
IClientInterface.aidl 32 boolean disableSupplicant();
  /system/connectivity/wificond/
client_interface_binder.h 41 ::android::binder::Status disableSupplicant(bool* success) override;
client_interface_binder.cpp 45 Status ClientInterfaceBinder::disableSupplicant(bool* success) {
46 *success = impl_ && impl_->DisableSupplicant();
  /system/connectivity/wificond/tests/integration/
client_interface_test.cpp 99 client_interface->disableSupplicant(&supplicant_stopped).isOk());
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WificondControlTest.java 271 * Verifies that disableSupplicant() calls wificond.
280 when(clientInterface.disableSupplicant()).thenReturn(true);
283 assertTrue(mWificondControl.disableSupplicant());
284 verify(clientInterface).disableSupplicant();
288 * Verifies that disableSupplicant() returns false when there is no configured
307 assertFalse(mWificondControl.disableSupplicant());
WifiNativeTest.java 608 * Verifies that disableSupplicant() calls underlying WificondControl.
612 when(mWificondControl.disableSupplicant()).thenReturn(true);
614 mWifiNative.disableSupplicant();
615 verify(mWificondControl).disableSupplicant();
WifiStateMachineTest.java 403 when(mWifiNative.disableSupplicant()).thenReturn(true);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java 228 public boolean disableSupplicant() {
234 return mClientInterface.disableSupplicant();
WifiNative.java 176 public boolean disableSupplicant() {
177 return mWificondControl.disableSupplicant();
    [all...]
WifiStateMachine.java     [all...]

Completed in 75 milliseconds