Lines Matching refs:locationRequest

976     public void getCurrentLocation(@NonNull LocationRequest locationRequest,  in getCurrentLocation()  argument
979 Preconditions.checkArgument(locationRequest.getProvider() != null); in getCurrentLocation()
980 getCurrentLocation(locationRequest.getProvider(), locationRequest, cancellationSignal, in getCurrentLocation() local
1022 @NonNull LocationRequest locationRequest, in getCurrentLocation() argument
1026 Preconditions.checkArgument(locationRequest != null, "invalid null location request"); in getCurrentLocation()
1038 locationRequest, transport, mContext.getPackageName(), in getCurrentLocation()
1446 @Nullable LocationRequest locationRequest, in requestLocationUpdates()
1450 requestLocationUpdates(locationRequest, new HandlerExecutor(handler), listener); in requestLocationUpdates()
1476 @Nullable LocationRequest locationRequest, in requestLocationUpdates()
1479 if (locationRequest == null) { in requestLocationUpdates()
1480 locationRequest = LocationRequest.create(); in requestLocationUpdates()
1482 Preconditions.checkArgument(locationRequest.getProvider() != null); in requestLocationUpdates()
1483 requestLocationUpdates(locationRequest.getProvider(), locationRequest, executor, listener); in requestLocationUpdates() local
1507 @Nullable LocationRequest locationRequest, in requestLocationUpdates()
1509 if (locationRequest == null) { in requestLocationUpdates()
1510 locationRequest = LocationRequest.create(); in requestLocationUpdates()
1512 Preconditions.checkArgument(locationRequest.getProvider() != null); in requestLocationUpdates()
1513 requestLocationUpdates(locationRequest.getProvider(), locationRequest, pendingIntent); in requestLocationUpdates() local
1575 @NonNull LocationRequest locationRequest, in requestLocationUpdates() argument
1579 Preconditions.checkArgument(locationRequest != null, "invalid null location request"); in requestLocationUpdates()
1593 mService.registerLocationListener(provider, locationRequest, transport, in requestLocationUpdates()
1625 @NonNull LocationRequest locationRequest, in requestLocationUpdates() argument
1628 Preconditions.checkArgument(locationRequest != null, "invalid null location request"); in requestLocationUpdates()
1642 mService.registerLocationPendingIntent(provider, locationRequest, pendingIntent, in requestLocationUpdates()