/frameworks/base/location/java/android/location/ |
D | LocationRequest.java | 89 public final class LocationRequest implements Parcelable { class 165 public static LocationRequest create() { in create() 166 LocationRequest request = new LocationRequest(); in create() 172 public static LocationRequest createFromDeprecatedProvider(String provider, long minTime, in createFromDeprecatedProvider() 186 LocationRequest request = new LocationRequest() in createFromDeprecatedProvider() 198 public static LocationRequest createFromDeprecatedCriteria(Criteria criteria, long minTime, in createFromDeprecatedCriteria() 221 LocationRequest request = new LocationRequest() in createFromDeprecatedCriteria() 231 public LocationRequest() { } in LocationRequest() method in LocationRequest 234 public LocationRequest(LocationRequest src) { in LocationRequest() method in LocationRequest 268 public LocationRequest setQuality(int quality) { in setQuality() [all …]
|
D | LocationManager.java | 457 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in requestLocationUpdates() 488 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in requestLocationUpdates() 520 LocationRequest request = LocationRequest.createFromDeprecatedCriteria( in requestLocationUpdates() 547 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in requestLocationUpdates() 648 LocationRequest request = LocationRequest.createFromDeprecatedCriteria( in requestLocationUpdates() 676 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in requestSingleUpdate() 705 LocationRequest request = LocationRequest.createFromDeprecatedCriteria( in requestSingleUpdate() 727 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in requestSingleUpdate() 750 LocationRequest request = LocationRequest.createFromDeprecatedCriteria( in requestSingleUpdate() 813 public void requestLocationUpdates(LocationRequest request, LocationListener listener, in requestLocationUpdates() [all …]
|
D | ILocationManager.aidl | 29 import android.location.LocationRequest; 41 void requestLocationUpdates(in LocationRequest request, in ILocationListener listener, in requestLocationUpdates() 45 void requestGeofence(in LocationRequest request, in Geofence geofence, in requestGeofence() 49 Location getLastLocation(in LocationRequest request, String packageName); in getLastLocation()
|
D | LocationRequest.aidl | 19 parcelable LocationRequest;
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
D | LocationRequestUnbundled.java | 19 import android.location.LocationRequest; 34 public static final int ACCURACY_FINE = LocationRequest.ACCURACY_FINE; 43 public static final int ACCURACY_BLOCK = LocationRequest.ACCURACY_BLOCK; 52 public static final int ACCURACY_CITY = LocationRequest.ACCURACY_CITY; 61 public static final int POWER_NONE = LocationRequest.POWER_NONE; 69 public static final int POWER_LOW = LocationRequest.POWER_LOW; 76 public static final int POWER_HIGH = LocationRequest.POWER_HIGH; 78 private final LocationRequest delegate; 80 LocationRequestUnbundled(LocationRequest delegate) { in LocationRequestUnbundled()
|
D | ProviderRequestUnbundled.java | 22 import android.location.LocationRequest; 54 for (LocationRequest r : mRequest.locationRequests) { in getLocationRequests()
|
/frameworks/base/location/java/com/android/internal/location/ |
D | ProviderRequest.java | 22 import android.location.LocationRequest; 42 public List<LocationRequest> locationRequests = new ArrayList<LocationRequest>(); 55 request.locationRequests.add(LocationRequest.CREATOR.createFromParcel(in)); 75 for (LocationRequest request : locationRequests) { in writeToParcel()
|
/frameworks/base/docs/html/training/location/ |
D | receive-location-updates.jd | 64 …roid.gms.common.api.GoogleApiClient, com.google.android.gms.location.LocationRequest, com.google.a… 107 …="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html">{@code LocationRequest… 110 …="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html">{@code LocationRequest… 119 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setInterval(long… 130 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setFastestInterv… 136 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setInterval(long… 140 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setFastestInterv… 146 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setPriority(int)… 152 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#PRIORITY_BALANCE… 161 …<a href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#PRIORITY_HIGH_AC… [all …]
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | GeofenceManager.java | 32 import android.location.LocationRequest; 119 public void addFence(LocationRequest request, Geofence geofence, PendingIntent intent, in addFence() 314 LocationRequest request = new LocationRequest(); in updateFences()
|
D | FlpHardwareProvider.java | 29 import android.location.LocationRequest; 85 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in FlpHardwareProvider()
|
D | GpsLocationProvider.java | 53 import android.location.LocationRequest; 666 LocationRequest request = LocationRequest.createFromDeprecatedProvider( in GpsLocationProvider() 1118 for (LocationRequest lr : mProviderRequest.locationRequests) { in updateRequirements()
|
/frameworks/base/services/core/java/com/android/server/ |
D | LocationManagerService.java | 75 import android.location.LocationRequest; 145 private static final LocationRequest DEFAULT_LOCATION_REQUEST = new LocationRequest(); 1337 LocationRequest locationRequest = record.mRequest; in applyRequirementsLocked() 1356 LocationRequest locationRequest = record.mRequest; in applyRequirementsLocked() 1382 final LocationRequest mRequest; 1390 UpdateRecord(String provider, LocationRequest request, Receiver receiver) { in UpdateRecord() 1486 private LocationRequest createSanitizedRequest(LocationRequest request, int resolutionLevel) { in createSanitizedRequest() 1487 LocationRequest sanitizedRequest = new LocationRequest(request); in createSanitizedRequest() 1490 case LocationRequest.ACCURACY_FINE: in createSanitizedRequest() 1491 sanitizedRequest.setQuality(LocationRequest.ACCURACY_BLOCK); in createSanitizedRequest() [all …]
|
/frameworks/base/docs/html/training/articles/ |
D | wear-location-detection.jd | 142 href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html" 143 >{@code LocationRequest}</a> object and set any options using methods like <a 144 href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setPriority(int)" 147 …roid.gms.common.api.GoogleApiClient, com.google.android.gms.location.LocationRequest, com.google.a… 161 LocationRequest locationRequest = LocationRequest.create() 162 .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY) 209 href="{@docRoot}reference/com/google/android/gms/location/LocationRequest.html#setInterval(long)">
|
/frameworks/base/api/ |
D | system-current.txt | 14841 …method public void requestLocationUpdates(android.location.LocationRequest, android.location.Locat… 14842 …method public void requestLocationUpdates(android.location.LocationRequest, android.app.PendingInt… 14879 public final class LocationRequest implements android.os.Parcelable { 14880 method public static android.location.LocationRequest create(); 14881 …method public static android.location.LocationRequest createFromDeprecatedCriteria(android.locatio… 14882 …method public static android.location.LocationRequest createFromDeprecatedProvider(java.lang.Strin… 14893 method public android.location.LocationRequest setExpireAt(long); 14894 method public android.location.LocationRequest setExpireIn(long); 14895 method public android.location.LocationRequest setFastestInterval(long); 14897 method public android.location.LocationRequest setInterval(long); [all …]
|