OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:enableSupplicant
(Results
1 - 11
of
11
) sorted by null
/system/connectivity/wificond/aidl/android/net/wifi/
IClientInterface.aidl
28
boolean
enableSupplicant
();
/system/connectivity/wificond/
client_interface_binder.h
40
::android::binder::Status
enableSupplicant
(bool* success) override;
client_interface_binder.cpp
40
Status ClientInterfaceBinder::
enableSupplicant
(bool* success) {
41
*success = impl_ && impl_->
EnableSupplicant
();
/system/connectivity/wificond/tests/integration/
service_test.cpp
52
EXPECT_TRUE(client_interface->
enableSupplicant
(&supplicant_started).isOk());
client_interface_test.cpp
86
EXPECT_TRUE(client_interface->
enableSupplicant
(&supplicant_started).isOk());
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WificondControlTest.java
231
* Verifies that
enableSupplicant
() calls wificond.
240
when(clientInterface.
enableSupplicant
()).thenReturn(true);
243
assertTrue(mWificondControl.
enableSupplicant
());
244
verify(clientInterface).
enableSupplicant
();
248
* Verifies that
enableSupplicant
() returns false when there is no configured
267
assertFalse(mWificondControl.
enableSupplicant
());
WifiNativeTest.java
597
* Verifies that
enableSupplicant
() calls underlying WificondControl.
601
when(mWificondControl.
enableSupplicant
()).thenReturn(true);
603
mWifiNative.
enableSupplicant
();
604
verify(mWificondControl).
enableSupplicant
();
WifiStateMachineTest.java
402
when(mWifiNative.
enableSupplicant
()).thenReturn(true);
560
when(mWifiNative.
enableSupplicant
()).thenReturn(false);
595
when(mWifiNative.
enableSupplicant
()).thenReturn(false);
[
all
...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java
245
public boolean
enableSupplicant
() {
252
return mClientInterface.
enableSupplicant
();
WifiNative.java
184
public boolean
enableSupplicant
() {
185
return mWificondControl.
enableSupplicant
();
[
all
...]
WifiStateMachine.java
[
all
...]
Completed in 3131 milliseconds