Home
last modified time | relevance | path

Searched refs:geofenceBreachNotification (Results 1 – 20 of 20) sorted by relevance

/hardware/qcom/gps/msm8909w_3100/android/location_api/
DGeofenceAPIClient.cpp62 [this](GeofenceBreachNotification geofenceBreachNotification) { in GeofenceAPIClient() argument
63 onGeofenceBreachCb(geofenceBreachNotification); in GeofenceAPIClient()
140 void GeofenceAPIClient::onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) in onGeofenceBreachCb() argument
142 LOC_LOGD("%s]: (%zu)", __FUNCTION__, geofenceBreachNotification.count); in onGeofenceBreachCb()
144 for (size_t i = 0; i < geofenceBreachNotification.count; i++) { in onGeofenceBreachCb()
146 convertGnssLocation(geofenceBreachNotification.location, gnssLocation); in onGeofenceBreachCb()
149 if (geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER) in onGeofenceBreachCb()
151 else if (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT) in onGeofenceBreachCb()
160 geofenceBreachNotification.ids[i], gnssLocation, transition, in onGeofenceBreachCb()
161 static_cast<GnssUtcTime>(geofenceBreachNotification.timestamp)); in onGeofenceBreachCb()
DGeofenceAPIClient.h60 void onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) final;
/hardware/qcom/gps/msm8998/android/location_api/
DGeofenceAPIClient.cpp61 [this](GeofenceBreachNotification geofenceBreachNotification) { in GeofenceAPIClient() argument
62 onGeofenceBreachCb(geofenceBreachNotification); in GeofenceAPIClient()
139 void GeofenceAPIClient::onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) in onGeofenceBreachCb() argument
141 LOC_LOGD("%s]: (%zu)", __FUNCTION__, geofenceBreachNotification.count); in onGeofenceBreachCb()
143 for (size_t i = 0; i < geofenceBreachNotification.count; i++) { in onGeofenceBreachCb()
145 convertGnssLocation(geofenceBreachNotification.location, gnssLocation); in onGeofenceBreachCb()
148 if (geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER) in onGeofenceBreachCb()
150 else if (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT) in onGeofenceBreachCb()
159 geofenceBreachNotification.ids[i], gnssLocation, transition, in onGeofenceBreachCb()
160 static_cast<GnssUtcTime>(geofenceBreachNotification.timestamp)); in onGeofenceBreachCb()
DGeofenceAPIClient.h60 void onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) final;
/hardware/qcom/sdm845/gps/msm8998/android/location_api/
DGeofenceAPIClient.cpp61 [this](GeofenceBreachNotification geofenceBreachNotification) { in GeofenceAPIClient() argument
62 onGeofenceBreachCb(geofenceBreachNotification); in GeofenceAPIClient()
139 void GeofenceAPIClient::onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) in onGeofenceBreachCb() argument
141 LOC_LOGD("%s]: (%zu)", __FUNCTION__, geofenceBreachNotification.count); in onGeofenceBreachCb()
143 for (size_t i = 0; i < geofenceBreachNotification.count; i++) { in onGeofenceBreachCb()
145 convertGnssLocation(geofenceBreachNotification.location, gnssLocation); in onGeofenceBreachCb()
148 if (geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER) in onGeofenceBreachCb()
150 else if (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT) in onGeofenceBreachCb()
159 geofenceBreachNotification.ids[i], gnssLocation, transition, in onGeofenceBreachCb()
160 static_cast<GnssUtcTime>(geofenceBreachNotification.timestamp)); in onGeofenceBreachCb()
DGeofenceAPIClient.h60 void onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) final;
/hardware/qcom/sdm845/gps/sdm845/android/location_api/
DGeofenceAPIClient.cpp64 [this](GeofenceBreachNotification geofenceBreachNotification) { in GeofenceAPIClient() argument
65 onGeofenceBreachCb(geofenceBreachNotification); in GeofenceAPIClient()
142 void GeofenceAPIClient::onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) in onGeofenceBreachCb() argument
144 LOC_LOGD("%s]: (%zu)", __FUNCTION__, geofenceBreachNotification.count); in onGeofenceBreachCb()
146 for (size_t i = 0; i < geofenceBreachNotification.count; i++) { in onGeofenceBreachCb()
148 convertGnssLocation(geofenceBreachNotification.location, gnssLocation); in onGeofenceBreachCb()
151 if (geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER) in onGeofenceBreachCb()
153 else if (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT) in onGeofenceBreachCb()
162 geofenceBreachNotification.ids[i], gnssLocation, transition, in onGeofenceBreachCb()
163 static_cast<V1_0::GnssUtcTime>(geofenceBreachNotification.timestamp)); in onGeofenceBreachCb()
DGeofenceAPIClient.h60 void onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) final;
/hardware/qcom/sdm845/gps/msm8998/location/
DLocationAPIClientBase.cpp70 [this](GeofenceBreachNotification geofenceBreachNotification) { in locAPISetCallbacks() argument
71 beforeGeofenceBreachCb(geofenceBreachNotification); in locAPISetCallbacks()
712 GeofenceBreachNotification geofenceBreachNotification) in beforeGeofenceBreachCb() argument
716 uint32_t* ids = (uint32_t*)malloc(sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
717 uint32_t* backup = geofenceBreachNotification.ids; in beforeGeofenceBreachCb()
718 size_t n = geofenceBreachNotification.count; in beforeGeofenceBreachCb()
722 uint32_t id = mGeofenceBiDict.getId(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
723 GeofenceBreachTypeMask type = mGeofenceBiDict.getType(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
726 if ((geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER && in beforeGeofenceBreachCb()
728 (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT && in beforeGeofenceBreachCb()
[all …]
DLocationAPI.h671 GeofenceBreachNotification geofenceBreachNotification
DLocationAPIClientBase.h102 void beforeGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification);
/hardware/qcom/gps/msm8998/location/
DLocationAPIClientBase.cpp70 [this](GeofenceBreachNotification geofenceBreachNotification) { in locAPISetCallbacks() argument
71 beforeGeofenceBreachCb(geofenceBreachNotification); in locAPISetCallbacks()
712 GeofenceBreachNotification geofenceBreachNotification) in beforeGeofenceBreachCb() argument
716 uint32_t* ids = (uint32_t*)malloc(sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
717 uint32_t* backup = geofenceBreachNotification.ids; in beforeGeofenceBreachCb()
718 size_t n = geofenceBreachNotification.count; in beforeGeofenceBreachCb()
722 uint32_t id = mGeofenceBiDict.getId(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
723 GeofenceBreachTypeMask type = mGeofenceBiDict.getType(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
726 if ((geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER && in beforeGeofenceBreachCb()
728 (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT && in beforeGeofenceBreachCb()
[all …]
DLocationAPI.h673 GeofenceBreachNotification geofenceBreachNotification
DLocationAPIClientBase.h102 void beforeGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification);
/hardware/qcom/gps/msm8909w_3100/location/
DLocationAPIClientBase.cpp249 [this](GeofenceBreachNotification geofenceBreachNotification) { in locAPISetCallbacks() argument
250 beforeGeofenceBreachCb(geofenceBreachNotification); in locAPISetCallbacks()
794 GeofenceBreachNotification geofenceBreachNotification) in beforeGeofenceBreachCb() argument
796 uint32_t* ids = (uint32_t*)malloc(sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
797 uint32_t* backup = geofenceBreachNotification.ids; in beforeGeofenceBreachCb()
798 size_t n = geofenceBreachNotification.count; in beforeGeofenceBreachCb()
804 sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
812 uint32_t id = mGeofenceBiDict.getId(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
814 mGeofenceBiDict.getExtBySession(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
817 if ((geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER && in beforeGeofenceBreachCb()
[all …]
DLocationAPI.h709 GeofenceBreachNotification geofenceBreachNotification
DLocationAPIClientBase.h214 void beforeGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification);
/hardware/qcom/sdm845/gps/sdm845/location/
DLocationAPIClientBase.cpp279 [this](GeofenceBreachNotification geofenceBreachNotification) { in locAPISetCallbacks() argument
280 beforeGeofenceBreachCb(geofenceBreachNotification); in locAPISetCallbacks()
819 GeofenceBreachNotification geofenceBreachNotification) in beforeGeofenceBreachCb() argument
821 uint32_t* ids = (uint32_t*)malloc(sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
822 uint32_t* backup = geofenceBreachNotification.ids; in beforeGeofenceBreachCb()
823 size_t n = geofenceBreachNotification.count; in beforeGeofenceBreachCb()
829 sizeof(uint32_t) * geofenceBreachNotification.count); in beforeGeofenceBreachCb()
837 uint32_t id = mGeofenceBiDict.getId(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
839 mGeofenceBiDict.getExtBySession(geofenceBreachNotification.ids[i]); in beforeGeofenceBreachCb()
842 if ((geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER && in beforeGeofenceBreachCb()
[all …]
DLocationDataTypes.h1028 GeofenceBreachNotification geofenceBreachNotification
DLocationAPIClientBase.h238 void beforeGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification);