HomeSort by relevance Sort by last modified time
    Searched defs:Geofence (Results 1 - 2 of 2) sorted by null

  /frameworks/base/location/java/android/location/
Geofence.java 23 * Represents a geographical boundary, also known as a geofence.
29 public final class Geofence implements Parcelable {
39 * Create a circular geofence (on a flat, horizontal plane).
44 * @return a new geofence
47 public static Geofence createCircle(double latitude, double longitude, float radius) {
48 return new Geofence(latitude, longitude, radius);
51 private Geofence(double latitude, double longitude, float radius) {
101 public static final Parcelable.Creator<Geofence> CREATOR = new Parcelable.Creator<Geofence>() {
103 public Geofence createFromParcel(Parcel in)
    [all...]
  /hardware/libhardware/include/hardware/
fused_location.h 511 * There are 3 states associated with a Geofence: Inside, Outside, Unknown.
528 * Inside state: We are 95% confident that the user is inside the geofence.
529 * Outside state: We are 95% confident that the user is outside the geofence
544 * whether it is inside or outside the geofence. If the accuracy remains the
551 * outside the Geofence. It moves to Unknown state only after the expiry of the
554 * The geofence callback needs to be triggered for the ENTERED and EXITED
556 * (Inside state) or exited (Outside state) the Geofence. An implementation
567 * appropriate (ENTERED or EXITED) transition for every Geofence it knows about.
573 * UNKNOWN transition described above is per geofence.
584 * The callback associated with the geofence
701 } geofence; member in struct:__anon41197
    [all...]

Completed in 74 milliseconds