Home
last modified time | relevance | path

Searched refs:toPerStateIoOveruseThreshold (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DOveruseConfigurationXmlHelperTest.cpp75 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::SYSTEM, in TEST()
79 {toPerStateIoOveruseThreshold("system.package.C", 400 * kOneMegaByte, in TEST()
81 toPerStateIoOveruseThreshold("system.package.D", 1024 * kOneMegaByte, in TEST()
104 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in TEST()
108 {toPerStateIoOveruseThreshold("com.vendor.package.C", 400 * kOneMegaByte, in TEST()
110 toPerStateIoOveruseThreshold("com.vendor.package.D", 1024 * kOneMegaByte, in TEST()
113 {toPerStateIoOveruseThreshold("MAPS", 800 * kOneMegaByte, 900 * kOneMegaByte, in TEST()
115 toPerStateIoOveruseThreshold("MEDIA", 600 * kOneMegaByte, 700 * kOneMegaByte, in TEST()
142 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::THIRD_PARTY, in TEST()
170 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::SYSTEM, in TEST()
[all …]
DIoOveruseConfigsTest.cpp127 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::SYSTEM, in sampleBuildSystemConfig()
130 {toPerStateIoOveruseThreshold("systemPackageA", SYSTEM_PACKAGE_A_THRESHOLDS)}, in sampleBuildSystemConfig()
144 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in sampleBuildVendorConfig()
147 {toPerStateIoOveruseThreshold("vendorPackageA", VENDOR_PACKAGE_A_THRESHOLDS)}, in sampleBuildVendorConfig()
149 {toPerStateIoOveruseThreshold("MEDIA", MEDIA_THRESHOLDS)}, in sampleBuildVendorConfig()
163 toPerStateIoOveruseThreshold(ComponentType::THIRD_PARTY, in sampleBuildThirdPartyConfig()
173 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::SYSTEM, in sampleUpdateSystemConfig()
176 {toPerStateIoOveruseThreshold("systemPackageA", SYSTEM_PACKAGE_A_THRESHOLDS), in sampleUpdateSystemConfig()
177 toPerStateIoOveruseThreshold("systemPackageB", SYSTEM_PACKAGE_B_THRESHOLDS)}, in sampleUpdateSystemConfig()
192 /*componentLevel=*/toPerStateIoOveruseThreshold(ComponentType::VENDOR, in sampleUpdateVendorConfig()
[all …]
DOveruseConfigurationTestUtils.cpp116 PerStateIoOveruseThreshold toPerStateIoOveruseThreshold(const std::string& name, in toPerStateIoOveruseThreshold() function
124 PerStateIoOveruseThreshold toPerStateIoOveruseThreshold(const std::string& name, in toPerStateIoOveruseThreshold() function
128 return toPerStateIoOveruseThreshold(name, toPerStateBytes(fgBytes, bgBytes, garageModeBytes)); in toPerStateIoOveruseThreshold()
131 PerStateIoOveruseThreshold toPerStateIoOveruseThreshold(const ComponentType type, in toPerStateIoOveruseThreshold() function
133 return toPerStateIoOveruseThreshold(toString(type), perStateBytes); in toPerStateIoOveruseThreshold()
136 PerStateIoOveruseThreshold toPerStateIoOveruseThreshold(const ComponentType type, in toPerStateIoOveruseThreshold() function
140 return toPerStateIoOveruseThreshold(type, toPerStateBytes(fgBytes, bgBytes, garageModeBytes)); in toPerStateIoOveruseThreshold()
DOveruseConfigurationTestUtils.h63 toPerStateIoOveruseThreshold(
68 toPerStateIoOveruseThreshold(const std::string& name, const int64_t fgBytes, const int64_t bgBytes,
72 toPerStateIoOveruseThreshold(
77 toPerStateIoOveruseThreshold(
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogPerfHandler.java2626 internalConfig.componentLevelThresholds = toPerStateIoOveruseThreshold( in toResourceSpecificConfiguration()
2672 internalThresholds.add(toPerStateIoOveruseThreshold(entry.getKey(), in toPerStateIoOveruseThresholds()
2679 private static PerStateIoOveruseThreshold toPerStateIoOveruseThreshold(String name, in toPerStateIoOveruseThreshold() method in WatchdogPerfHandler