OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:apInterface
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java
168
IApInterface
apInterface
= null;
170
apInterface
= mWificond.createApInterface();
176
if (
apInterface
== null) {
180
Binder.allowBlocking(
apInterface
.asBinder());
183
mApInterface =
apInterface
;
185
return
apInterface
;
SoftApManager.java
82
IApInterface
apInterface
,
92
mApInterface =
apInterface
;
WifiInjector.java
371
* @param
apInterface
network interface to start hostapd against
377
IApInterface
apInterface
,
381
listener,
apInterface
, nmService,
WifiStateMachine.java
[
all
...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeTest.java
544
IApInterface
apInterface
= mock(IApInterface.class);
545
when(mWificondControl.setupDriverForSoftApMode()).thenReturn(
apInterface
);
548
assertEquals(
apInterface
, returnedApInterface);
560
IApInterface
apInterface
= mock(IApInterface.class);
561
when(mWificondControl.setupDriverForSoftApMode()).thenReturn(
apInterface
);
564
assertEquals(
apInterface
, returnedApInterface);
WificondControlTest.java
192
IApInterface
apInterface
= mock(IApInterface.class);
195
when(wificond.createApInterface()).thenReturn(
apInterface
);
198
assertEquals(
apInterface
, returnedApInterface);
Completed in 78 milliseconds