Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/location/
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()
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()
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.java259 int geofenceId = request.getId(); in addCircularFence() local
328 public boolean removeGeofence(int geofenceId, int monitoringType) { in removeGeofence()
368 public boolean pauseGeofence(int geofenceId, int monitoringType) { in pauseGeofence()
408 public boolean resumeGeofence(int geofenceId, int monitoringType, int monitorTransition) { in resumeGeofence()
472 int geofenceId, in reportGeofenceTransition()
532 private void reportGeofenceOperationStatus(int operation, int geofenceId, int operationStatus) { in reportGeofenceOperationStatus()
543 public void reportGeofenceAddStatus(int geofenceId, int status) { in reportGeofenceAddStatus()
551 public void reportGeofenceRemoveStatus(int geofenceId, int status) { in reportGeofenceRemoveStatus()
559 public void reportGeofencePauseStatus(int geofenceId, int status) { in reportGeofencePauseStatus()
567 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/java/com/android/server/location/gnss/
DGnssGeofenceProxy.java32 public int geofenceId; field in GnssGeofenceProxy.GeofenceEntry
64 public boolean addCircularHardwareGeofence(int geofenceId, double latitude, in addCircularHardwareGeofence()
88 public boolean removeHardwareGeofence(int geofenceId) { in removeHardwareGeofence()
99 public boolean pauseHardwareGeofence(int geofenceId) { in pauseHardwareGeofence()
113 public boolean resumeHardwareGeofence(int geofenceId, int monitorTransitions) { in resumeHardwareGeofence()
DGnssManagerService.java363 public void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
387 public void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceAddStatus()
393 public void onReportGeofenceRemoveStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceRemoveStatus()
399 public void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofencePauseStatus()
405 public void onReportGeofenceResumeStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceResumeStatus()
/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
DGnssNative.java238 void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
242 void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceAddStatus()
243 void onReportGeofenceRemoveStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceRemoveStatus()
244 void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofencePauseStatus()
245 void onReportGeofenceResumeStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceResumeStatus()
826 public boolean addGeofence(int geofenceId, double latitude, double longitude, double radius, in addGeofence()
837 public boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
845 public boolean pauseGeofence(int geofenceId) { in pauseGeofence()
853 public boolean removeGeofence(int geofenceId) { in removeGeofence()
1124 void reportGeofenceTransition(int geofenceId, Location location, int transition, in reportGeofenceTransition()
[all …]
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/gnss/hal/
DFakeGnssHal.java188 public GnssHalGeofence(int geofenceId, double latitude, double longitude, double radius, in GnssHalGeofence()
592 protected boolean addGeofence(int geofenceId, double latitude, double longitude, double radius, in addGeofence()
609 protected boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
624 protected boolean pauseGeofence(int geofenceId) { in pauseGeofence()
638 protected boolean removeGeofence(int geofenceId) { in removeGeofence()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp822 int32_t geofenceId, const GnssLocation_V1_0& location, in gnssGeofenceTransitionCb()
855 Return<void> GnssGeofenceCallback::gnssGeofenceAddCb(int32_t geofenceId, in gnssGeofenceAddCb()
870 Return<void> GnssGeofenceCallback::gnssGeofenceRemoveCb(int32_t geofenceId, in gnssGeofenceRemoveCb()
884 Return<void> GnssGeofenceCallback::gnssGeofencePauseCb(int32_t geofenceId, in gnssGeofencePauseCb()
898 Return<void> GnssGeofenceCallback::gnssGeofenceResumeCb(int32_t geofenceId, in gnssGeofenceResumeCb()
2565 JNIEnv* /* env */, jclass, jint geofenceId, jdouble latitude, jdouble longitude, in android_location_gnss_hal_GnssNative_add_geofence()
2581 jint geofenceId) { in android_location_gnss_hal_GnssNative_remove_geofence()
2592 jint geofenceId) { in android_location_gnss_hal_GnssNative_pause_geofence()
2603 jint geofenceId, in android_location_gnss_hal_GnssNative_resume_geofence()