Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/system/test/src/com/android/helpers/tests/
DProcLoadHelperTest.java24 import static com.android.helpers.ProcLoadHelper.LAST_MINUTE_LOAD_METRIC_KEY;
60 assertTrue(procLoadMetric.containsKey(LAST_MINUTE_LOAD_METRIC_KEY)); in testThresholdSuccess()
61 assertTrue(procLoadMetric.get(LAST_MINUTE_LOAD_METRIC_KEY) > 0); in testThresholdSuccess()
73 assertTrue(procLoadMetric.get(LAST_MINUTE_LOAD_METRIC_KEY) > 0); in testProcLoadWaitTimeMetric()
86 assertTrue(procLoadMetric.get(LAST_MINUTE_LOAD_METRIC_KEY) > 0); in testMetricAfterTimeout()
102 assertTrue(procLoadMetric.get(LAST_MINUTE_LOAD_METRIC_KEY) > 0); in testWaitForTimeout()
111 assertTrue(procLoadMetric.containsKey(LAST_MINUTE_LOAD_METRIC_KEY)); in testDefaults()
112 assertTrue(procLoadMetric.get(LAST_MINUTE_LOAD_METRIC_KEY) > 0); in testDefaults()
/platform_testing/libraries/collectors-helper/system/src/com/android/helpers/
DProcLoadHelper.java38 public static final String LAST_MINUTE_LOAD_METRIC_KEY = "proc_loadavg_last_minute"; field in ProcLoadHelper
86 result.put(LAST_MINUTE_LOAD_METRIC_KEY, mRecentLoad); in getMetrics()