Home
last modified time | relevance | path

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

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/aggregation/
DPriorityRecordsAggregator.java104 AggregationTimestamp scanPoint, nextPoint; in calculateAggregation() local
106 scanPoint = mTimestampsBuffer.pollFirst(); in calculateAggregation()
108 if (scanPoint.getType() == AggregationTimestamp.GROUP_BORDER) { in calculateAggregation()
110 } else if (scanPoint.getType() == AggregationTimestamp.INTERVAL_START) { in calculateAggregation()
111 mOpenIntervals.add(scanPoint.getParentData()); in calculateAggregation()
112 } else if (scanPoint.getType() == AggregationTimestamp.INTERVAL_END) { in calculateAggregation()
113 mOpenIntervals.remove(scanPoint.getParentData()); in calculateAggregation()
116 "Unknown aggregation timestamp type: " + scanPoint.getType()); in calculateAggregation()
118 updateAggregationResult(scanPoint, nextPoint); in calculateAggregation()