Home
last modified time | relevance | path

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

/packages/apps/PermissionController/src/com/android/permissioncontroller/permission/utils/
DLocationUtils.java122 private static final ArrayList<LocationListener> sLocationListeners = new ArrayList<>(); field in LocationUtils
129 synchronized (sLocationListeners) {
130 for (LocationListener l : sLocationListeners) {
144 synchronized (sLocationListeners) { in addLocationListener()
145 boolean wasEmpty = sLocationListeners.isEmpty(); in addLocationListener()
146 sLocationListeners.add(listener); in addLocationListener()
163 synchronized (sLocationListeners) { in removeLocationListener()
164 boolean success = sLocationListeners.remove(listener); in removeLocationListener()
165 if (success && sLocationListeners.isEmpty()) { in removeLocationListener()