Home
last modified time | relevance | path

Searched refs:mSoftApCallback (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/wifi/tether/
DWifiTetherSoftApManager.java18 private WifiManager.SoftApCallback mSoftApCallback = new WifiManager.SoftApCallback() { field in WifiTetherSoftApManager
39 mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback); in registerSoftApCallback()
43 mWifiManager.unregisterSoftApCallback(mSoftApCallback); in unRegisterSoftApCallback()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/tether/
DWifiTetherSoftApManager.java18 private WifiManager.SoftApCallback mSoftApCallback = new WifiManager.SoftApCallback() { field in WifiTetherSoftApManager
39 mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback); in registerSoftApCallback()
43 mWifiManager.unregisterSoftApCallback(mSoftApCallback); in unRegisterSoftApCallback()
/packages/services/Car/service/src/com/android/car/
DCarProjectionService.java107 private @Nullable ProjectionSoftApCallback mSoftApCallback; field in CarProjectionService
610 if (mSoftApCallback == null) { in startTetheredApLocked()
611 mSoftApCallback = new ProjectionSoftApCallback(); in startTetheredApLocked()
612 mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback); in startTetheredApLocked()
630 if (mSoftApCallback != null) { in stopTetheredApLocked()
631 mWifiManager.unregisterSoftApCallback(mSoftApCallback); in stopTetheredApLocked()
632 mSoftApCallback = null; in stopTetheredApLocked()
806 writer.println("SoftApCallback: " + mSoftApCallback); in dump()