Searched refs:histogramProto (Results 1 – 3 of 3) sorted by relevance
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/ |
H A D | TimeStatsTest.cpp | 566 EXPECT_EQ(1, histogramProto.frame_count()); in TEST_F() 567 EXPECT_EQ(2, histogramProto.time_millis()); in TEST_F() 585 EXPECT_EQ(1, histogramProto.frame_count()); in TEST_F() 586 EXPECT_EQ(3, histogramProto.time_millis()); in TEST_F() 618 EXPECT_EQ(2, histogramProto.frame_count()); in TEST_F() 619 EXPECT_EQ(2, histogramProto.time_millis()); in TEST_F() 641 EXPECT_EQ(1, histogramProto.frame_count()); in TEST_F() 643 EXPECT_EQ(1, histogramProto.time_millis()); in TEST_F() 645 EXPECT_EQ(4, histogramProto.time_millis()); in TEST_F() 647 EXPECT_EQ(3, histogramProto.time_millis()); in TEST_F() [all …]
|
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
H A D | TelephonyMetrics.java | 783 TelephonyProto.TelephonyHistogram histogramProto = log.histograms[i]; in buildProto() local 785 histogramProto.category = rilHistogram.getCategory(); in buildProto() 786 histogramProto.id = rilHistogram.getId(); in buildProto() 787 histogramProto.minTimeMillis = rilHistogram.getMinTime(); in buildProto() 788 histogramProto.maxTimeMillis = rilHistogram.getMaxTime(); in buildProto() 789 histogramProto.avgTimeMillis = rilHistogram.getAverageTime(); in buildProto() 790 histogramProto.count = rilHistogram.getSampleCount(); in buildProto() 791 histogramProto.bucketCount = rilHistogram.getBucketCount(); in buildProto() 792 histogramProto.bucketEndPoints = rilHistogram.getBucketEndPoints(); in buildProto() 793 histogramProto.bucketCounters = rilHistogram.getBucketCounters(); in buildProto()
|
/aosp12/frameworks/native/services/surfaceflinger/TimeStats/ |
H A D | TimeStats.cpp | 49 FrameTimingHistogram histogramProto; in histogramToProto() local 55 histogramProto.add_time_millis_buckets((int32_t)bucket.first); in histogramToProto() 56 histogramProto.add_frame_counts((int64_t)bucket.second); in histogramToProto() 58 return histogramProto; in histogramToProto()
|