Home | History | Annotate | Download | only in location

Lines Matching refs:geofenceId

257      * @param geofenceId The id associated with the geofence.
267 public boolean addGeofence(int geofenceId, int monitoringType, GeofenceHardwareRequest
273 new GeofenceHardwareRequestParcelable(geofenceId, geofenceRequest),
300 * @param geofenceId The id of the geofence.
305 public boolean removeGeofence(int geofenceId, int monitoringType) {
307 return mService.removeGeofence(geofenceId, monitoringType);
330 * @param geofenceId The id of the geofence.
335 public boolean pauseGeofence(int geofenceId, int monitoringType) {
337 return mService.pauseGeofence(geofenceId, monitoringType);
360 * @param geofenceId The id of the geofence.
367 public boolean resumeGeofence(int geofenceId, int monitoringType, int monitorTransition) {
369 return mService.resumeGeofence(geofenceId, monitoringType, monitorTransition);
506 public void onGeofenceTransition(int geofenceId, int transition, Location location,
510 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
515 public void onGeofenceAdd(int geofenceId, int status) {
517 if (c != null) c.onGeofenceAdd(geofenceId, status);
520 public void onGeofenceRemove(int geofenceId, int status) {
523 c.onGeofenceRemove(geofenceId, status);
528 public void onGeofencePause(int geofenceId, int status) {
531 c.onGeofencePause(geofenceId, status);
535 public void onGeofenceResume(int geofenceId, int status) {
537 if (c != null) c.onGeofenceResume(geofenceId, status);