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

  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SoftApManagerTest.java 52 /** Unit tests for {@link SoftApManager}. */
71 @Mock SoftApManager.Listener mListener;
83 SoftApManager mSoftApManager;
105 private SoftApManager createSoftApManager(WifiConfiguration config) throws Exception {
112 SoftApManager newSoftApManager = new SoftApManager(mLooper.getLooper(),
147 SoftApManager newSoftApManager = new SoftApManager(mLooper.getLooper(),
WifiStateMachinePrimeTest.java 60 @Mock SoftApManager mSoftApManager;
61 SoftApManager.Listener mSoftApListener;
106 public SoftApManager answer(InvocationOnMock invocation) {
109 mSoftApListener = (SoftApManager.Listener) args[1];
115 any(SoftApManager.Listener.class),
198 * Expectation: When switching out of SoftApModeActiveState we stop the SoftApManager and tear
260 * Expectations: We should exit the SoftApModeActiveState and stop the SoftApManager.
265 // now inject failure through the SoftApManager.Listener
273 * Test that we return to the SoftApModeState after the SoftApManager is stopped in the
275 * Expectations: We should exit the SoftApModeActiveState and stop the SoftApManager
    [all...]
WifiStateMachineTest.java 331 final ArgumentCaptor<SoftApManager.Listener> mSoftApManagerListenerCaptor =
332 ArgumentCaptor.forClass(SoftApManager.Listener.class);
353 @Mock SoftApManager mSoftApManager;
525 // get the SoftApManager.Listener and trigger some updates
526 SoftApManager.Listener listener = mSoftApManagerListenerCaptor.getValue();
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiInjector.java 367 * Create a SoftApManager.
368 * @param nmService NetworkManagementService allowing SoftApManager to listen for interface
370 * @param listener listener for SoftApManager
373 * @return an instance of SoftApManager
375 public SoftApManager makeSoftApManager(INetworkManagementService nmService,
376 SoftApManager.Listener listener,
379 return new SoftApManager(mWifiServiceHandlerThread.getLooper(),
SoftApManager.java 46 public class SoftApManager implements ActiveModeManager {
47 private static final String TAG = "SoftApManager";
78 public SoftApManager(Looper looper,
WifiStateMachinePrime.java 112 * constructor of SoftApManager.
398 private class SoftApListener implements SoftApManager.Listener {
414 Log.d(TAG, "Passing config to SoftApManager! " + config);
WifiStateMachine.java     [all...]

Completed in 826 milliseconds