Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DStatsdHelper.java351 List<Pair<AtomsProto.Atom, Long>> atomTimestampData = new ArrayList<>(); in backfillGaugeBucket() local
355 atomTimestampData.add(Pair.create(atomInfo.atom, timestampNs)); in backfillGaugeBucket()
358 atomTimestampData.sort(Comparator.comparing(o -> o.second)); in backfillGaugeBucket()
359 bucketInfo.atom = new AtomsProto.Atom[atomTimestampData.size()]; in backfillGaugeBucket()
360 bucketInfo.elapsedTimestampNanos = new long[atomTimestampData.size()]; in backfillGaugeBucket()
361 for (int i = 0; i < atomTimestampData.size(); i++) { in backfillGaugeBucket()
362 bucketInfo.atom[i] = atomTimestampData.get(i).first; in backfillGaugeBucket()
363 bucketInfo.elapsedTimestampNanos[i] = atomTimestampData.get(i).second; in backfillGaugeBucket()