Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/android/car/watchdog/
DIoOveruseConfiguration.java102 @NonNull List<IoOveruseAlertThreshold> systemWideThresholds) { in IoOveruseConfiguration() argument
112 this.mSystemWideThresholds = systemWideThresholds; in IoOveruseConfiguration()
215 List<IoOveruseAlertThreshold> systemWideThresholds = new java.util.ArrayList<>(); in IoOveruseConfiguration() local
216 in.readParcelableList(systemWideThresholds, IoOveruseAlertThreshold.class.getClassLoader()); in IoOveruseConfiguration()
227 this.mSystemWideThresholds = systemWideThresholds; in IoOveruseConfiguration()
299 @NonNull List<IoOveruseAlertThreshold> systemWideThresholds) { in Builder() argument
309 mSystemWideThresholds = systemWideThresholds; in Builder()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DInternalIoOveruseConfigurationSubject.java81 && isAlertThresholdEquals(actual.systemWideThresholds, in isEquals()
82 expected.systemWideThresholds); in isEquals()
98 .append(config.systemWideThresholds.stream() in toStringBuilder()
DWatchdogPerfHandlerUnitTest.java4820 config.systemWideThresholds = Collections.singletonList( in sampleInternalIoOveruseConfiguration()
4891 List<IoOveruseAlertThreshold> systemWideThresholds = Collections.singletonList( in sampleIoOveruseConfigurationBuilder() local
4896 packageSpecificThresholds, appCategorySpecificThresholds, systemWideThresholds); in sampleIoOveruseConfigurationBuilder()
/packages/services/Car/cpp/watchdog/server/tests/
DOveruseConfigurationTestUtils.cpp46 ExplainMatchResult(UnorderedElementsAreArray(config.systemWideThresholds),
47 arg.systemWideThresholds, result_listener);
103 config.systemWideThresholds = systemWide; in constructIoOveruseConfig()
DIoOveruseConfigsTest.cpp491 systemIoConfig.systemWideThresholds.erase(systemIoConfig.systemWideThresholds.begin() + 1); in TEST_F()
620 ioConfig.systemWideThresholds = {toIoOveruseAlertThreshold(0, 0)}; in TEST_F()
741 vendorIoConfig.systemWideThresholds.clear(); in TEST_F()
782 thirdPartyIoConfig.systemWideThresholds.clear(); in TEST_F()
/packages/services/Car/cpp/watchdog/server/src/
DIoOveruseConfigs.cpp145 if (ioOveruseConfig.systemWideThresholds.empty()) { in isValidIoOveruseConfiguration()
148 for (const auto& threshold : ioOveruseConfig.systemWideThresholds) { in isValidIoOveruseConfiguration()
562 if (auto result = updateAlertThresholds(ioOveruseConfiguration.systemWideThresholds); in update()
567 } else if (!ioOveruseConfiguration.systemWideThresholds.empty()) { in update()
641 ioOveruseConfiguration.systemWideThresholds.push_back(threshold); in get()
DOveruseConfigurationXmlHelper.cpp430 configuration.systemWideThresholds = *result; in readIoOveruseConfiguration()
673 writeSystemWideThresholds(configuration.systemWideThresholds, childElement); in writeIoOveruseConfiguration()
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl51 List<IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/2/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl39 List<android.automotive.watchdog.internal.IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl39 List<android.automotive.watchdog.internal.IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/1/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl39 List<android.automotive.watchdog.internal.IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl39 List<android.automotive.watchdog.internal.IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogPerfHandler.java2645 internalConfig.systemWideThresholds = toInternalIoOveruseAlertThresholds( in toResourceSpecificConfiguration()
2757 List<IoOveruseAlertThreshold> systemWideThresholds = in toIoOveruseConfiguration() local
2758 toIoOveruseAlertThresholds(internalConfig.systemWideThresholds); in toIoOveruseConfiguration()
2762 systemWideThresholds); in toIoOveruseConfiguration()