Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/jni/gnss/
H A DGnssGeofenceCallback.cpp59 Status GnssGeofenceCallbackAidl::gnssGeofenceTransitionCb(int geofenceId, in gnssGeofenceTransitionCb()
73 Status GnssGeofenceCallbackAidl::gnssGeofenceAddCb(int geofenceId, int status) { in gnssGeofenceAddCb()
83 Status GnssGeofenceCallbackAidl::gnssGeofencePauseCb(int geofenceId, int status) { in gnssGeofencePauseCb()
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()
131 void GnssGeofenceCallbackUtil::gnssGeofenceAddCb(int geofenceId, int status) { in gnssGeofenceAddCb()
141 void GnssGeofenceCallbackUtil::gnssGeofenceRemoveCb(int geofenceId, int status) { in gnssGeofenceRemoveCb()
151 void GnssGeofenceCallbackUtil::gnssGeofencePauseCb(int geofenceId, int status) { in gnssGeofencePauseCb()
[all …]
H A 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()
H A DGnssGeofenceCallback.h125 void GnssGeofenceCallbackUtil::gnssGeofenceTransitionCb(int geofenceId, const T& location, in gnssGeofenceTransitionCb()
/aosp14/frameworks/base/core/java/android/hardware/location/
H A 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()
H A 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()
H A 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()
H A 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 …]
/aosp14/frameworks/base/location/java/android/location/
H A 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()
H A 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()
/aosp14/frameworks/base/services/core/java/com/android/server/location/gnss/
H A 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()
H A DGnssManagerService.java379 public void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
403 public void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceAddStatus()
409 public void onReportGeofenceRemoveStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceRemoveStatus()
415 public void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofencePauseStatus()
421 public void onReportGeofenceResumeStatus(int geofenceId, @GeofenceStatus int status) { in onReportGeofenceResumeStatus()
/aosp14/frameworks/base/services/core/java/com/android/server/location/gnss/hal/
H A DGnssNative.java243 void onReportGeofenceTransition(int geofenceId, Location location, in onReportGeofenceTransition()
247 void onReportGeofenceAddStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofenceAddStatus()
249 void onReportGeofencePauseStatus(int geofenceId, @GeofenceStatus int status); in onReportGeofencePauseStatus()
906 public boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
914 public boolean pauseGeofence(int geofenceId) { in pauseGeofence()
922 public boolean removeGeofence(int geofenceId) { in removeGeofence()
1475 protected boolean resumeGeofence(int geofenceId, int monitorTransitions) { in resumeGeofence()
1479 protected boolean pauseGeofence(int geofenceId) { in pauseGeofence()
1483 protected boolean removeGeofence(int geofenceId) { in removeGeofence()
1643 private static native boolean native_pause_geofence(int geofenceId); in native_pause_geofence()
[all …]
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/gnss/hal/
H A 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()
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp658 JNIEnv* /* env */, jclass, jint geofenceId, jdouble latitude, jdouble longitude, in android_location_gnss_hal_GnssNative_add_geofence()
671 jint geofenceId) { in android_location_gnss_hal_GnssNative_remove_geofence()
680 jint geofenceId) { in android_location_gnss_hal_GnssNative_pause_geofence()
689 jint geofenceId, in android_location_gnss_hal_GnssNative_resume_geofence()