Searched refs:allowedResolutionLevel (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/location/ |
D | GeofenceState.java | 47 int allowedResolutionLevel, int uid, String packageName, PendingIntent intent) { in GeofenceState() argument 53 mAllowedResolutionLevel = allowedResolutionLevel; in GeofenceState()
|
D | GeofenceManager.java | 154 int allowedResolutionLevel, int uid, String packageName) { in addFence() argument 161 request.getExpireAt(), allowedResolutionLevel, uid, packageName, intent); in addFence()
|
/frameworks/base/services/core/java/com/android/server/ |
D | LocationManagerService.java | 1715 int allowedResolutionLevel = getCallerAllowedResolutionLevel(); in hasGnssPermissions() local 1717 allowedResolutionLevel, in hasGnssPermissions() 1724 return checkLocationAccess(pid, uid, packageName, allowedResolutionLevel); in hasGnssPermissions() 1894 private void checkResolutionLevelIsSufficientForGeofenceUse(int allowedResolutionLevel) { in checkResolutionLevelIsSufficientForGeofenceUse() argument 1895 if (allowedResolutionLevel < RESOLUTION_LEVEL_FINE) { in checkResolutionLevelIsSufficientForGeofenceUse() 1931 private void checkResolutionLevelIsSufficientForProviderUseLocked(int allowedResolutionLevel, in checkResolutionLevelIsSufficientForProviderUseLocked() argument 1934 if (allowedResolutionLevel < requiredResolutionLevel) { in checkResolutionLevelIsSufficientForProviderUseLocked() 1949 public static int resolutionLevelToOp(int allowedResolutionLevel) { in resolutionLevelToOp() argument 1950 if (allowedResolutionLevel != RESOLUTION_LEVEL_NONE) { in resolutionLevelToOp() 1951 if (allowedResolutionLevel == RESOLUTION_LEVEL_COARSE) { in resolutionLevelToOp() [all …]
|