Home
last modified time | relevance | path

Searched defs:geofenceId (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/location/
DGnssGeofenceProvider.java20 public int geofenceId; field in GnssGeofenceProvider.GeofenceEntry
73 public boolean addCircularHardwareGeofence(int geofenceId, double latitude, in addCircularHardwareGeofence()
97 public boolean removeHardwareGeofence(int geofenceId) { in removeHardwareGeofence()
108 public boolean pauseHardwareGeofence(int geofenceId) { in pauseHardwareGeofence()
122 public boolean resumeHardwareGeofence(int geofenceId, int monitorTransitions) { in resumeHardwareGeofence()
142 public boolean addGeofence(int geofenceId, double latitude, double longitude, double radius, in addGeofence()
149 public boolean removeGeofence(int geofenceId) { in removeGeofence()
153 public boolean resumeGeofence(int geofenceId, int transitions) { in resumeGeofence()
157 public boolean pauseGeofence(int geofenceId) { in pauseGeofence()
164 private static native boolean native_add_geofence(int geofenceId, double latitude, in native_add_geofence()
[all …]
/frameworks/base/core/java/android/hardware/location/
DGeofenceHardwareCallback.java41 public void onGeofenceTransition(int geofenceId, int transition, Location location, in onGeofenceTransition()
55 public void onGeofenceAdd(int geofenceId, int status) { in onGeofenceAdd()
66 public void onGeofenceRemove(int geofenceId, int status) { in onGeofenceRemove()
77 public void onGeofencePause(int geofenceId, int status) { in onGeofencePause()
89 public void onGeofenceResume(int geofenceId, int status) { in onGeofenceResume()
DIGeofenceHardwareCallback.aidl23 void onGeofenceTransition(int geofenceId, int transition, in Location location, in onGeofenceTransition()
25 void onGeofenceAdd(int geofenceId, int status); in onGeofenceAdd()
26 void onGeofenceRemove(int geofenceId, int status); in onGeofenceRemove()
27 void onGeofencePause(int geofenceId, int status); in onGeofencePause()
28 void onGeofenceResume(int geofenceId, int status); in onGeofenceResume()
DGeofenceHardware.java270 public boolean addGeofence(int geofenceId, int monitoringType, GeofenceHardwareRequest in addGeofence()
308 public boolean removeGeofence(int geofenceId, int monitoringType) { in removeGeofence()
338 public boolean pauseGeofence(int geofenceId, int monitoringType) { in pauseGeofence()
370 public boolean resumeGeofence(int geofenceId, int monitoringType, int monitorTransition) { in resumeGeofence()
509 public void onGeofenceTransition(int geofenceId, int transition, Location location, in onGeofenceTransition()
518 public void onGeofenceAdd(int geofenceId, int status) { in onGeofenceAdd()
523 public void onGeofenceRemove(int geofenceId, int status) { in onGeofenceRemove()
531 public void onGeofencePause(int geofenceId, int status) { in onGeofencePause()
538 public void onGeofenceResume(int geofenceId, int status) { in onGeofenceResume()
DGeofenceHardwareImpl.java258 int geofenceId = request.getId(); in addCircularFence() local
327 public boolean removeGeofence(int geofenceId, int monitoringType) { in removeGeofence()
367 public boolean pauseGeofence(int geofenceId, int monitoringType) { in pauseGeofence()
407 public boolean resumeGeofence(int geofenceId, int monitoringType, int monitorTransition) { in resumeGeofence()
471 int geofenceId, in reportGeofenceTransition()
531 private void reportGeofenceOperationStatus(int operation, int geofenceId, int operationStatus) { in reportGeofenceOperationStatus()
542 public void reportGeofenceAddStatus(int geofenceId, int status) { in reportGeofenceAddStatus()
550 public void reportGeofenceRemoveStatus(int geofenceId, int status) { in reportGeofenceRemoveStatus()
558 public void reportGeofencePauseStatus(int geofenceId, int status) { in reportGeofencePauseStatus()
566 public void reportGeofenceResumeStatus(int geofenceId, int status) { in reportGeofenceResumeStatus()
[all …]
/frameworks/base/location/java/android/location/
DIGpsGeofenceHardware.aidl27 boolean addCircularHardwareGeofence(int geofenceId, double latitude, double in addCircularHardwareGeofence()
30 boolean removeHardwareGeofence(int geofenceId); in removeHardwareGeofence()
31 boolean pauseHardwareGeofence(int geofenceId); in pauseHardwareGeofence()
32 boolean resumeHardwareGeofence(int geofenceId, int monitorTransition); in resumeHardwareGeofence()
DIFusedGeofenceHardware.aidl58 void pauseMonitoringGeofence(in int geofenceId); in pauseMonitoringGeofence()
69 void resumeMonitoringGeofence(in int geofenceId, in int monitorTransitions); in resumeMonitoringGeofence()
87 in int geofenceId, in modifyGeofenceOptions()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp849 int32_t geofenceId, const GnssLocation_V1_0& location, in gnssGeofenceTransitionCb()
882 Return<void> GnssGeofenceCallback::gnssGeofenceAddCb(int32_t geofenceId, in gnssGeofenceAddCb()
897 Return<void> GnssGeofenceCallback::gnssGeofenceRemoveCb(int32_t geofenceId, in gnssGeofenceRemoveCb()
911 Return<void> GnssGeofenceCallback::gnssGeofencePauseCb(int32_t geofenceId, in gnssGeofencePauseCb()
925 Return<void> GnssGeofenceCallback::gnssGeofenceResumeCb(int32_t geofenceId, in gnssGeofenceResumeCb()
2525 jobject /* obj */, jint geofenceId, jdouble latitude, jdouble longitude, jdouble radius, in android_location_GnssGeofenceProvider_add_geofence()
2541 jobject /* obj */, jint geofenceId) { in android_location_GnssGeofenceProvider_remove_geofence()
2552 jobject /* obj */, jint geofenceId) { in android_location_GnssGeofenceProvider_pause_geofence()
2563 jobject /* obj */, jint geofenceId, jint monitor_transition) { in android_location_GnssGeofenceProvider_resume_geofence()