OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:setupDriverForSoftApMode
(Results
1 - 4
of
4
) sorted by null
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeTest.java
540
* Verifies that
setupDriverForSoftApMode
() calls underlying WificondControl.
545
when(mWificondControl.
setupDriverForSoftApMode
()).thenReturn(apInterface);
550
verify(mWificondControl).
setupDriverForSoftApMode
();
561
when(mWificondControl.
setupDriverForSoftApMode
()).thenReturn(apInterface);
566
verify(mWificondControl).
setupDriverForSoftApMode
();
570
* Verifies that
setupDriverForSoftApMode
() returns null when underlying WificondControl
575
when(mWificondControl.
setupDriverForSoftApMode
()).thenReturn(null);
580
verify(mWificondControl).
setupDriverForSoftApMode
();
584
* Verifies that
setupDriverForSoftApMode
() returns null when underlying Hal call fails.
593
verify(mWificondControl, never()).
setupDriverForSoftApMode
();
[
all
...]
WificondControlTest.java
187
* Verifies that
setupDriverForSoftApMode
() calls wificond.
197
IApInterface returnedApInterface = mWificondControl.
setupDriverForSoftApMode
();
209
IApInterface returnedApInterface = mWificondControl.
setupDriverForSoftApMode
();
215
* Verifies that
setupDriverForSoftApMode
() returns null when wificond failed to setup
226
IApInterface returnedApInterface = mWificondControl.
setupDriverForSoftApMode
();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java
160
public IApInterface
setupDriverForSoftApMode
() {
WifiNative.java
126
return mWificondControl.
setupDriverForSoftApMode
();
[
all
...]
Completed in 136 milliseconds