Home
last modified time | relevance | path

Searched refs:geofenceId (Results 1 – 6 of 6) sorted by relevance

/hardware/interfaces/gnss/1.0/default/
DGnssGeofencing.cpp53 void GnssGeofencing::gnssGfTransitionCb(int32_t geofenceId, in gnssGfTransitionCb() argument
69 geofenceId, in gnssGfTransitionCb()
99 void GnssGeofencing::gnssGfAddCb(int32_t geofenceId, int32_t status) { in gnssGfAddCb() argument
106 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status)); in gnssGfAddCb()
112 void GnssGeofencing::gnssGfRemoveCb(int32_t geofenceId, int32_t status) { in gnssGfRemoveCb() argument
119 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status)); in gnssGfRemoveCb()
125 void GnssGeofencing::gnssGfPauseCb(int32_t geofenceId, int32_t status) { in gnssGfPauseCb() argument
132 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status)); in gnssGfPauseCb()
138 void GnssGeofencing::gnssGfResumeCb(int32_t geofenceId, int32_t status) { in gnssGfResumeCb() argument
145 geofenceId, static_cast<IGnssGeofenceCallback::GeofenceStatus>(status)); in gnssGfResumeCb()
[all …]
DGnssGeofencing.h53 Return<void> addGeofence(int32_t geofenceId,
62 Return<void> pauseGeofence(int32_t geofenceId) override;
63 Return<void> resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) override;
64 Return<void> removeGeofence(int32_t geofenceId) override;
/hardware/qcom/gps/msm8998/android/
DGnssGeofencing.cpp77 int32_t geofenceId, in addGeofence() argument
89 geofenceId, in addGeofence()
101 Return<void> GnssGeofencing::pauseGeofence(int32_t geofenceId) { in pauseGeofence() argument
105 mApi->geofencePause(geofenceId); in pauseGeofence()
110 Return<void> GnssGeofencing::resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) { in resumeGeofence() argument
114 mApi->geofenceResume(geofenceId, monitorTransitions); in resumeGeofence()
119 Return<void> GnssGeofencing::removeGeofence(int32_t geofenceId) { in removeGeofence() argument
123 mApi->geofenceRemove(geofenceId); in removeGeofence()
DGnssGeofencing.h51 Return<void> addGeofence(int32_t geofenceId,
60 Return<void> pauseGeofence(int32_t geofenceId) override;
61 Return<void> resumeGeofence(int32_t geofenceId, int32_t monitorTransitions) override;
62 Return<void> removeGeofence(int32_t geofenceId) override;
/hardware/interfaces/gnss/1.0/
DIGnssGeofencing.hal34 * @param geofenceId The id for the geofence. If a geofence with this id
56 addGeofence(int32_t geofenceId, double latitudeDegrees, double longitudeDegrees,
65 * @param geofenceId The id for the geofence.
67 pauseGeofence(int32_t geofenceId);
72 * @param geofenceId - The id for the geofence.
78 resumeGeofence(int32_t geofenceId,
85 * @param geofenceId The id of the geofence.
87 removeGeofence(int32_t geofenceId);
DIGnssGeofenceCallback.hal128 * @param geofenceId The id associated with the addGeofenceArea.
134 gnssGeofenceTransitionCb(int32_t geofenceId, GnssLocation location,
151 * @param geofenceId Id of the geofence.
160 gnssGeofenceAddCb(int32_t geofenceId, GeofenceStatus status);
165 * @param geofenceId Id of the geofence.
170 gnssGeofenceRemoveCb(int32_t geofenceId, GeofenceStatus status);
175 * @param geofenceId Id of the geofence.
181 gnssGeofencePauseCb(int32_t geofenceId, GeofenceStatus status);
186 * @param geofenceId - Id of the geofence.
190 gnssGeofenceResumeCb(int32_t geofenceId, GeofenceStatus status);