Searched defs:geofenceId (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/hardware/location/ |
D | GeofenceHardwareCallback.java | 41 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()
|
D | IGeofenceHardwareCallback.aidl | 23 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()
|
D | GeofenceHardware.java | 267 public boolean addGeofence(int geofenceId, int monitoringType, GeofenceHardwareRequest in addGeofence() 305 public boolean removeGeofence(int geofenceId, int monitoringType) { in removeGeofence() 335 public boolean pauseGeofence(int geofenceId, int monitoringType) { in pauseGeofence() 367 public boolean resumeGeofence(int geofenceId, int monitoringType, int monitorTransition) { in resumeGeofence() 506 public void onGeofenceTransition(int geofenceId, int transition, Location location, in onGeofenceTransition() 515 public void onGeofenceAdd(int geofenceId, int status) { in onGeofenceAdd() 520 public void onGeofenceRemove(int geofenceId, int status) { in onGeofenceRemove() 528 public void onGeofencePause(int geofenceId, int status) { in onGeofencePause() 535 public void onGeofenceResume(int geofenceId, int status) { in onGeofenceResume()
|
D | GeofenceHardwareImpl.java | 258 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/ |
D | IGpsGeofenceHardware.aidl | 27 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()
|
D | IFusedGeofenceHardware.aidl | 58 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/ |
D | FlpHardwareProvider.java | 213 int geofenceId, in onGeofenceTransition() 257 private void onGeofenceAdd(int geofenceId, int result) { in onGeofenceAdd() 263 private void onGeofenceRemove(int geofenceId, int result) { in onGeofenceRemove() 269 private void onGeofencePause(int geofenceId, int result) { in onGeofencePause() 275 private void onGeofenceResume(int geofenceId, int result) { in onGeofenceResume() 317 private native void nativePauseGeofence(int geofenceId); in nativePauseGeofence() 318 private native void nativeResumeGeofence(int geofenceId, int monitorTransitions); in nativeResumeGeofence() 320 int geofenceId, in nativeModifyGeofenceOption()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_location_FlpHardwareProvider.cpp | 631 int32_t geofenceId, in GeofenceTransitionCallback() 692 static void GeofenceAddCallback(int32_t geofenceId, int32_t result) { in GeofenceAddCallback() 701 static void GeofenceRemoveCallback(int32_t geofenceId, int32_t result) { in GeofenceRemoveCallback() 715 static void GeofencePauseCallback(int32_t geofenceId, int32_t result) { in GeofencePauseCallback() 729 static void GeofenceResumeCallback(int32_t geofenceId, int32_t result) { in GeofenceResumeCallback() 978 static void PauseGeofence(JNIEnv* env, jobject /* object */, jint geofenceId) { in PauseGeofence() 989 jint geofenceId, in ResumeGeofence() 1001 jint geofenceId, in ModifyGeofenceOption()
|