Home
last modified time | relevance | path

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

/frameworks/base/services/core/jni/gnss/
DGnssGeofenceCallback.cpp59 Status GnssGeofenceCallbackAidl::gnssGeofenceTransitionCb(int geofenceId, in gnssGeofenceTransitionCb()
73 Status GnssGeofenceCallbackAidl::gnssGeofenceAddCb(int geofenceId, int status) { in gnssGeofenceAddCb()
78 Status GnssGeofenceCallbackAidl::gnssGeofenceRemoveCb(int geofenceId, int status) { in gnssGeofenceRemoveCb()
83 Status GnssGeofenceCallbackAidl::gnssGeofencePauseCb(int geofenceId, int status) { in gnssGeofencePauseCb()
88 Status GnssGeofenceCallbackAidl::gnssGeofenceResumeCb(int geofenceId, int status) { in gnssGeofenceResumeCb()
94 int32_t geofenceId, const GnssLocation_V1_0& location, GeofenceTransition transition, in gnssGeofenceTransitionCb()
107 Return<void> GnssGeofenceCallbackHidl::gnssGeofenceAddCb(int32_t geofenceId, in gnssGeofenceAddCb()
113 Return<void> GnssGeofenceCallbackHidl::gnssGeofenceRemoveCb(int32_t geofenceId, in gnssGeofenceRemoveCb()
119 Return<void> GnssGeofenceCallbackHidl::gnssGeofencePauseCb(int32_t geofenceId, in gnssGeofencePauseCb()
125 Return<void> GnssGeofenceCallbackHidl::gnssGeofenceResumeCb(int32_t geofenceId, in gnssGeofenceResumeCb()
[all …]
DGnssGeofence.cpp43 jboolean GnssGeofenceAidl::addGeofence(int geofenceId, double latitudeDegrees, in addGeofence()
53 jboolean GnssGeofenceAidl::removeGeofence(int geofenceId) { in removeGeofence()
58 jboolean GnssGeofenceAidl::pauseGeofence(int geofenceId) { in pauseGeofence()
63 jboolean GnssGeofenceAidl::resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
80 jboolean GnssGeofenceHidl::addGeofence(int geofenceId, double latitudeDegrees, in addGeofence()
93 jboolean GnssGeofenceHidl::removeGeofence(int geofenceId) { in removeGeofence()
98 jboolean GnssGeofenceHidl::pauseGeofence(int geofenceId) { in pauseGeofence()
103 jboolean GnssGeofenceHidl::resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
DGnssGeofenceCallback.h125 void GnssGeofenceCallbackUtil::gnssGeofenceTransitionCb(int geofenceId, const T& location, in gnssGeofenceTransitionCb()
/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.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/core/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.java367 public void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
391 public void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceAddStatus()
397 public void onReportGeofenceRemoveStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceRemoveStatus()
403 public void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofencePauseStatus()
409 public void onReportGeofenceResumeStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceResumeStatus()
/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
DGnssNative.java252 void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
256 void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceAddStatus()
257 void onReportGeofenceRemoveStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceRemoveStatus()
258 void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofencePauseStatus()
259 void onReportGeofenceResumeStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceResumeStatus()
920 public boolean addGeofence(int geofenceId, double latitude, double longitude, double radius, in addGeofence()
931 public boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
939 public boolean pauseGeofence(int geofenceId) { in pauseGeofence()
947 public boolean removeGeofence(int geofenceId) { in removeGeofence()
1272 void reportGeofenceTransition(int geofenceId, Location location, int transition, in reportGeofenceTransition()
[all …]
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/gnss/hal/
DFakeGnssHal.java193 public GnssHalGeofence(int geofenceId, double latitude, double longitude, double radius, in GnssHalGeofence()
626 protected boolean addGeofence(int geofenceId, double latitude, double longitude, double radius, in addGeofence()
643 protected boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
658 protected boolean pauseGeofence(int geofenceId) { in pauseGeofence()
672 protected boolean removeGeofence(int geofenceId) { in removeGeofence()
/frameworks/base/services/core/jni/
Dcom_android_server_location_GnssLocationProvider.cpp592 JNIEnv* /* env */, jclass, jint geofenceId, jdouble latitude, jdouble longitude, in android_location_gnss_hal_GnssNative_add_geofence()
605 jint geofenceId) { in android_location_gnss_hal_GnssNative_remove_geofence()
614 jint geofenceId) { in android_location_gnss_hal_GnssNative_pause_geofence()
623 jint geofenceId, in android_location_gnss_hal_GnssNative_resume_geofence()