OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:geofence
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/services/java/com/android/server/location/
GeofenceManager.java
28
import android.location.
Geofence
;
119
public void addFence(LocationRequest request,
Geofence
geofence
, PendingIntent intent,
122
Slog.d(TAG, "addFence: request=" + request + ",
geofence
=" +
geofence
126
GeofenceState state = new GeofenceState(
geofence
,
132
if (
geofence
.equals(w.mFence) && intent.equals(w.mIntent)) {
143
public void removeFence(
Geofence
fence, PendingIntent intent) {
234
* The
geofence
update loop. This function removes expired fences, then tests the most
261
Slog.d(TAG, "skipping
geofence
processing for blacklisted app:
[
all
...]
/frameworks/base/location/java/android/location/
ILocationManager.aidl
23
import android.location.
Geofence
;
44
void requestGeofence(in LocationRequest request, in
Geofence
geofence
,
46
void removeGeofence(in
Geofence
fence, in PendingIntent intent, String packageName);
/hardware/libhardware/include/hardware/
fused_location.h
432
* There are 3 states associated with a
Geofence
: Inside, Outside, Unknown.
449
* Inside state: We are 95% confident that the user is inside the
geofence
.
450
* Outside state: We are 95% confident that the user is outside the
geofence
465
* whether it is inside or outside the
geofence
. If the accuracy remains the
472
* outside the
Geofence
. It moves to Unknown state only after the expiry of the
475
* The
geofence
callback needs to be triggered for the ENTERED and EXITED
477
* (Inside state) or exited (Outside state) the
Geofence
. An implementation
488
* appropriate (ENTERED or EXITED) transition for every
Geofence
it knows about.
494
* UNKNOWN transition described above is per
geofence
.
505
* The callback associated with the
geofence
621
}
geofence
;
member in struct:__anon31097
[
all
...]
/frameworks/base/services/jni/
com_android_server_location_FlpHardwareProvider.cpp
268
* Helper function to unwrap
Geofence
structures from the Java Runtime calls.
273
Geofence
&
geofence
) {
277
geofence
.geofence_id = env->CallIntMethod(geofenceRequestObject, getId);
281
// the same notion of
geofence
types
286
geofence
.data->type = type;
287
GeofenceCircle& circle =
geofence
.data->
geofence
.circle;
304
GeofenceOptions* options =
geofence
.options;
858
Geofence
* geofences = new Geofence[geofenceRequestsCount]
[
all
...]
/frameworks/base/services/java/com/android/server/
LocationManagerService.java
37
import android.location.
Geofence
;
437
// bind to
geofence
provider
446
Slog.e(TAG, "no
geofence
provider found");
[
all
...]
Completed in 75 milliseconds