Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/android/car/watchdog/
DIoOveruseConfiguration.java96 @NonNull List<IoOveruseAlertThreshold> systemWideThresholds) { in IoOveruseConfiguration() argument
106 this.mSystemWideThresholds = systemWideThresholds; in IoOveruseConfiguration()
204 List<IoOveruseAlertThreshold> systemWideThresholds = new java.util.ArrayList<>(); in IoOveruseConfiguration() local
205 in.readParcelableList(systemWideThresholds, IoOveruseAlertThreshold.class.getClassLoader()); in IoOveruseConfiguration()
216 this.mSystemWideThresholds = systemWideThresholds; in IoOveruseConfiguration()
284 @NonNull List<IoOveruseAlertThreshold> systemWideThresholds) { in Builder() argument
294 mSystemWideThresholds = systemWideThresholds; in Builder()
/packages/services/Car/cpp/watchdog/server/tests/
DOveruseConfigurationTestUtils.cpp45 ExplainMatchResult(UnorderedElementsAreArray(config.systemWideThresholds),
46 arg.systemWideThresholds, result_listener);
102 config.systemWideThresholds = systemWide; in constructIoOveruseConfig()
DIoOveruseConfigsTest.cpp501 systemIoConfig.systemWideThresholds.erase(systemIoConfig.systemWideThresholds.begin() + 1); in TEST_F()
630 ioConfig.systemWideThresholds = {toIoOveruseAlertThreshold(0, 0)}; in TEST_F()
751 vendorIoConfig.systemWideThresholds.clear(); in TEST_F()
792 thirdPartyIoConfig.systemWideThresholds.clear(); in TEST_F()
/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()
DCarWatchdogServiceUnitTest.java1500 List<IoOveruseAlertThreshold> systemWideThresholds = Collections.singletonList( in sampleIoOveruseConfigurationBuilder() local
1505 packageSpecificThresholds, appCategorySpecificThresholds, systemWideThresholds); in sampleIoOveruseConfigurationBuilder()
1547 config.systemWideThresholds = Collections.singletonList( in sampleInternalIoOveruseConfiguration()
/packages/services/Car/cpp/watchdog/server/src/
DIoOveruseConfigs.cpp155 if (ioOveruseConfig.systemWideThresholds.empty()) { in isValidIoOveruseConfiguration()
158 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()
639 ioOveruseConfiguration.systemWideThresholds.push_back(threshold); in get()
DOveruseConfigurationXmlHelper.cpp431 configuration.systemWideThresholds = *result; in readIoOveruseConfiguration()
674 writeSystemWideThresholds(configuration.systemWideThresholds, childElement); in writeIoOveruseConfiguration()
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DIoOveruseConfiguration.aidl51 List<IoOveruseAlertThreshold> systemWideThresholds;
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogPerfHandler.java997 internalConfig.systemWideThresholds = toInternalIoOveruseAlertThresholds( in toResourceSpecificConfiguration()
1108 List<IoOveruseAlertThreshold> systemWideThresholds = in toIoOveruseConfiguration() local
1109 toIoOveruseAlertThresholds(internalConfig.systemWideThresholds); in toIoOveruseConfiguration()
1113 systemWideThresholds); in toIoOveruseConfiguration()