Searched defs:geofenceBreachNotification (Results 1 - 2 of 2) sorted by relevance

/hardware/qcom/gps/msm8998/android/location_api/
H A DGeofenceAPIClient.cpp61 [this](GeofenceBreachNotification geofenceBreachNotification) {
62 onGeofenceBreachCb(geofenceBreachNotification);
139 void GeofenceAPIClient::onGeofenceBreachCb(GeofenceBreachNotification geofenceBreachNotification) argument
141 LOC_LOGD("%s]: (%zu)", __FUNCTION__, geofenceBreachNotification.count);
143 for (size_t i = 0; i < geofenceBreachNotification.count; i++) {
145 convertGnssLocation(geofenceBreachNotification.location, gnssLocation);
148 if (geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER)
150 else if (geofenceBreachNotification.type == GEOFENCE_BREACH_EXIT)
159 geofenceBreachNotification.ids[i], gnssLocation, transition,
160 static_cast<GnssUtcTime>(geofenceBreachNotification
[all...]
/hardware/qcom/gps/msm8998/location/
H A DLocationAPIClientBase.cpp65 [this](GeofenceBreachNotification geofenceBreachNotification) {
66 beforeGeofenceBreachCb(geofenceBreachNotification);
644 GeofenceBreachNotification geofenceBreachNotification)
648 uint32_t* ids = (uint32_t*)malloc(sizeof(uint32_t) * geofenceBreachNotification.count);
649 uint32_t* backup = geofenceBreachNotification.ids;
650 size_t n = geofenceBreachNotification.count;
654 uint32_t id = mGeofenceBiDict.getId(geofenceBreachNotification.ids[i]);
655 GeofenceBreachTypeMask type = mGeofenceBiDict.getType(geofenceBreachNotification.ids[i]);
656 if ((geofenceBreachNotification.type == GEOFENCE_BREACH_ENTER &&
658 (geofenceBreachNotification
643 beforeGeofenceBreachCb( GeofenceBreachNotification geofenceBreachNotification) argument
[all...]

Completed in 24 milliseconds