Home
last modified time | relevance | path

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

/frameworks/native/services/surfaceflinger/tests/unittests/
DTimeStatsTest.cpp273 const SFTimeStatsHistogramBucketProto& histogramProto = globalProto.present_to_present().Get(0); in TEST_F() local
274 EXPECT_EQ(1, histogramProto.frame_count()); in TEST_F()
275 EXPECT_EQ(2, histogramProto.time_millis()); in TEST_F()
296 const SFTimeStatsHistogramBucketProto& histogramProto = deltaProto.histograms().Get(0); in TEST_F() local
297 EXPECT_EQ(1, histogramProto.frame_count()); in TEST_F()
299 EXPECT_EQ(1, histogramProto.time_millis()); in TEST_F()
301 EXPECT_EQ(4, histogramProto.time_millis()); in TEST_F()
303 EXPECT_EQ(3, histogramProto.time_millis()); in TEST_F()
305 EXPECT_EQ(2, histogramProto.time_millis()); in TEST_F()
307 EXPECT_EQ(1, histogramProto.time_millis()); in TEST_F()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DTelephonyMetrics.java719 TelephonyProto.TelephonyHistogram histogramProto = log.histograms[i]; in buildProto() local
721 histogramProto.category = rilHistogram.getCategory(); in buildProto()
722 histogramProto.id = rilHistogram.getId(); in buildProto()
723 histogramProto.minTimeMillis = rilHistogram.getMinTime(); in buildProto()
724 histogramProto.maxTimeMillis = rilHistogram.getMaxTime(); in buildProto()
725 histogramProto.avgTimeMillis = rilHistogram.getAverageTime(); in buildProto()
726 histogramProto.count = rilHistogram.getSampleCount(); in buildProto()
727 histogramProto.bucketCount = rilHistogram.getBucketCount(); in buildProto()
728 histogramProto.bucketEndPoints = rilHistogram.getBucketEndPoints(); in buildProto()
729 histogramProto.bucketCounters = rilHistogram.getBucketCounters(); in buildProto()