OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
520
* There are 3 states associated with a
Geofence
: Inside, Outside, Unknown.
537
* Inside state: We are 95% confident that the user is inside the
geofence
.
538
* Outside state: We are 95% confident that the user is outside the
geofence
553
* whether it is inside or outside the
geofence
. If the accuracy remains the
560
* outside the
Geofence
. It moves to Unknown state only after the expiry of the
563
* The
geofence
callback needs to be triggered for the ENTERED and EXITED
565
* (Inside state) or exited (Outside state) the
Geofence
. An implementation
576
* appropriate (ENTERED or EXITED) transition for every
Geofence
it knows about.
582
* UNKNOWN transition described above is per
geofence
.
593
* The callback associated with the
geofence
710
}
geofence
;
member in struct:__anon32108
[
all
...]
Completed in 75 milliseconds