HomeSort by relevance Sort by last modified time
    Searched defs:enableSupplicant (Results 1 - 5 of 5) sorted by null

  /system/connectivity/wificond/
client_interface_binder.cpp 40 Status ClientInterfaceBinder::enableSupplicant(bool* success) {
41 *success = impl_ && impl_->EnableSupplicant();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java 269 public boolean enableSupplicant() {
276 return mClientInterface.enableSupplicant();
WifiNative.java 192 public boolean enableSupplicant() {
193 return mWificondControl.enableSupplicant();
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeTest.java 608 * Verifies that enableSupplicant() calls underlying WificondControl.
612 when(mWificondControl.enableSupplicant()).thenReturn(true);
614 mWifiNative.enableSupplicant();
615 verify(mWificondControl).enableSupplicant();
WificondControlTest.java 253 * Verifies that enableSupplicant() calls wificond.
262 when(clientInterface.enableSupplicant()).thenReturn(true);
265 assertTrue(mWificondControl.enableSupplicant());
266 verify(clientInterface).enableSupplicant();
270 * Verifies that enableSupplicant() returns false when there is no configured
289 assertFalse(mWificondControl.enableSupplicant());
    [all...]

Completed in 2971 milliseconds