Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiManager.java1403 private static final SparseArray<ISoftApCallback> sSoftApCallbackMap = new SparseArray(); field in WifiManager
4882 synchronized (sSoftApCallbackMap) { in registerSoftApCallback()
4884 sSoftApCallbackMap.put(System.identityHashCode(callback), binderCallback); in registerSoftApCallback()
4911 synchronized (sSoftApCallbackMap) { in unregisterSoftApCallback()
4913 if (!sSoftApCallbackMap.contains(callbackIdentifier)) { in unregisterSoftApCallback()
4917 mService.unregisterSoftApCallback(sSoftApCallbackMap.get(callbackIdentifier)); in unregisterSoftApCallback()
4918 sSoftApCallbackMap.remove(callbackIdentifier); in unregisterSoftApCallback()