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

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SoftApManagerTest.java 74 @Mock IApInterface mApInterface;
91 when(mApInterface.asBinder()).thenReturn(mApInterfaceBinder);
92 when(mApInterface.startHostapd()).thenReturn(true);
93 when(mApInterface.stopHostapd()).thenReturn(true);
94 when(mApInterface.writeHostapdConfig(
96 when(mApInterface.getInterfaceName()).thenReturn(TEST_INTERFACE_NAME);
106 when(mApInterface.asBinder()).thenReturn(mApInterfaceBinder);
107 when(mApInterface.startHostapd()).thenReturn(true);
108 when(mApInterface.stopHostapd()).thenReturn(true);
116 mApInterface,
    [all...]
WifiStateMachinePrimeTest.java 58 @Mock IApInterface mApInterface;
103 when(mWificond.createApInterface()).thenReturn(mApInterface);
110 assertEquals(mApInterface, (IApInterface) args[2]);
357 when(mWificond.createApInterface()).thenReturn(mApInterface);
WifiStateMachineTest.java 346 @Mock IApInterface mApInterface;
399 when(mWifiNative.setupForSoftApMode()).thenReturn(mApInterface);
400 when(mApInterface.getInterfaceName()).thenReturn(WIFI_IFACE_NAME);
431 when(mApInterface.asBinder()).thenReturn(mApInterfaceBinder);
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SoftApManager.java 57 private final IApInterface mApInterface;
92 mApInterface = apInterface;
168 boolean success = mApInterface.writeHostapdConfig(
179 success = mApInterface.startHostapd();
219 mApInterface.stopHostapd();
280 if (!mDeathRecipient.linkToDeath(mApInterface.asBinder())) {
290 mNetworkObserver = new NetworkObserver(mApInterface.getInterfaceName());
358 config = mNwService.getInterfaceConfig(mApInterface.getInterfaceName());
WifiStateMachinePrime.java 272 IApInterface mApInterface = null;
283 mApInterface = null;
293 mApInterface = mWificond.createApInterface();
296 if (mApInterface == null) {
336 return mApInterface;
WificondControl.java 59 private IApInterface mApInterface;
183 mApInterface = apInterface;
214 mApInterface = null;

Completed in 67 milliseconds