Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DIntHistogramTest.java50 private IntHistogram mHistogram;
69 mHistogram = new IntHistogram(TEST_BUCKET_BOUNDARIES); in testAddToHistogram()
113 mHistogram = new IntHistogram(TEST_BUCKET_BOUNDARIES); in testAddToHistogramWithGap()
153 mHistogram = new IntHistogram(TEST_NEGATIVE_BUCKET_BOUNDARIES); in testAddNegativeToHistogram()
208 mHistogram = new IntHistogram(TEST_BUCKET_BOUNDARIES); in testEmptyHistogram()
226 mHistogram = new IntHistogram(TEST_BUCKET_BOUNDARIES); in testLength1Histogram()
249 new IntHistogram(null); in testNullBucketBoundary()
257 new IntHistogram(new int[] {}); in testEmptyBucketBoundary()
265 new IntHistogram(new int[] {1, 2, 3, 3}); in testNonMonotonicBucketBoundaries()
270 mHistogram = new IntHistogram(TEST_BUCKET_BOUNDARIES); in testEmptyQuantile()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/util/
DIntHistogram.java34 public class IntHistogram implements Iterable<IntHistogram.Bucket> { class
75 public IntHistogram(@NonNull int[] bucketBoundaries) { in IntHistogram() method in IntHistogram
/packages/modules/Wifi/service/java/com/android/server/wifi/
DDppMetrics.java41 import com.android.server.wifi.util.IntHistogram;
61 private IntHistogram mHistogramDppOperationTime = new IntHistogram(DPP_OPERATION_TIME);
DWifiMetrics.java137 import com.android.server.wifi.util.IntHistogram;
428 private final IntHistogram mLinkProbeSuccessSecondsSinceLastTxSuccessHistogram =
429 new IntHistogram(LINK_PROBE_TIME_SINCE_LAST_TX_SUCCESS_SECONDS_HISTOGRAM_BUCKETS);
430 private final IntHistogram mLinkProbeFailureSecondsSinceLastTxSuccessHistogram =
431 new IntHistogram(LINK_PROBE_TIME_SINCE_LAST_TX_SUCCESS_SECONDS_HISTOGRAM_BUCKETS);
435 private final IntHistogram mLinkProbeSuccessElapsedTimeMsHistogram = new IntHistogram(
496 private final IntHistogram mWifiNetworkRequestApiMatchSizeHistogram =
497 new IntHistogram(NETWORK_REQUEST_API_MATCH_SIZE_HISTOGRAM_BUCKETS);
505 private final IntHistogram mWifiNetworkRequestApiConnectionDurationSecOnPrimaryIfaceHistogram =
506 new IntHistogram(NETWORK_REQUEST_API_DURATION_SEC_BUCKETS);
[all …]
DWifiScoreCard.java69 import com.android.server.wifi.util.IntHistogram;
2433 public IntHistogram intHistogram = null;
2436 intHistogram = new IntHistogram(bucketBoundaries); in PerUnivariateStatistic()
2508 for (IntHistogram.Bucket b : intHistogram) { in toUnivariateStatistic()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiScoreCardTest.java69 import com.android.server.wifi.util.IntHistogram;
555 private void checkHistogramExample(String diag, IntHistogram rssiHistogram) { in checkHistogramExample()
557 for (IntHistogram.Bucket bucket : rssiHistogram) { in checkHistogramExample()
/packages/modules/Wifi/service/tests/wifitests/
DAndroid.bp1220 "com.android.server.wifi.util.IntHistogram",
1221 "com.android.server.wifi.util.IntHistogram$*",
1222 "com.android.server.wifi.util.IntHistogram.**",