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 | 152 int allowedResolutionLevel, int uid, String packageName) { in addFence() argument 159 request.getExpireAt(), allowedResolutionLevel, uid, packageName, intent); in addFence()
|
/frameworks/base/services/core/java/com/android/server/ |
D | LocationManagerService.java | 1139 int allowedResolutionLevel = getCallerAllowedResolutionLevel(); in hasGnssPermissions() local 1141 allowedResolutionLevel, in hasGnssPermissions() 1149 hasLocationAccess = checkLocationAccess(pid, uid, packageName, allowedResolutionLevel); in hasGnssPermissions() 1414 private void checkResolutionLevelIsSufficientForGeofenceUse(int allowedResolutionLevel) { in checkResolutionLevelIsSufficientForGeofenceUse() argument 1415 if (allowedResolutionLevel < RESOLUTION_LEVEL_FINE) { in checkResolutionLevelIsSufficientForGeofenceUse() 1461 private void checkResolutionLevelIsSufficientForProviderUse(int allowedResolutionLevel, in checkResolutionLevelIsSufficientForProviderUse() argument 1464 if (allowedResolutionLevel < requiredResolutionLevel) { in checkResolutionLevelIsSufficientForProviderUse() 1493 public static int resolutionLevelToOp(int allowedResolutionLevel) { in resolutionLevelToOp() argument 1494 if (allowedResolutionLevel != RESOLUTION_LEVEL_NONE) { in resolutionLevelToOp() 1495 if (allowedResolutionLevel == RESOLUTION_LEVEL_COARSE) { in resolutionLevelToOp() [all …]
|