Home
last modified time | relevance | path

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

/packages/services/Car/cpp/watchdog/server/tests/
DIoOveruseConfigsTest.cpp518 EXPECT_THAT(ioOveruseConfigs.fetchThreshold(packageInfo), defaultPerStateBytes) in TEST_F()
525 EXPECT_THAT(ioOveruseConfigs.fetchThreshold(packageInfo), defaultPerStateBytes) in TEST_F()
532 EXPECT_THAT(ioOveruseConfigs.fetchThreshold(packageInfo), defaultPerStateBytes) in TEST_F()
800 auto actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
805 actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
810 actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
817 actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
836 auto actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
841 actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
850 auto actual = ioOveruseConfigs->fetchThreshold( in TEST_F()
[all …]
DMockIoOveruseConfigs.h59 MOCK_METHOD(aidl::android::automotive::watchdog::PerStateBytes, fetchThreshold,
76 ON_CALL(*this, fetchThreshold(testing::_)) in injectPackageConfigs()
DIoOveruseMonitorTest.cpp586 EXPECT_CALL(*mMockIoOveruseConfigs, fetchThreshold(_)).Times(0); in TEST_F()
788 EXPECT_CALL(*mMockIoOveruseConfigs, fetchThreshold(_)).Times(0); in TEST_F()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java983 cache.fetchThreshold("system_package.non_critical.A", ComponentType.SYSTEM), in testOveruseConfigurationCacheFetchThreshold()
988 cache.fetchThreshold("system_package.A", ComponentType.SYSTEM), in testOveruseConfigurationCacheFetchThreshold()
993 cache.fetchThreshold("system_package.MEDIA", ComponentType.SYSTEM), in testOveruseConfigurationCacheFetchThreshold()
998 cache.fetchThreshold("vendor_package.non_critical.A", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold()
1003 cache.fetchThreshold("vendor_package.A", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold()
1008 cache.fetchThreshold("vendor_package.MEDIA", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold()
1013 cache.fetchThreshold("third_party_package.A", in testOveruseConfigurationCacheFetchThreshold()
1018 cache.fetchThreshold("third_party_package.MAPS", ComponentType.VENDOR), in testOveruseConfigurationCacheFetchThreshold()
1065 cache.fetchThreshold("system_package.A", ComponentType.SYSTEM), in testOverwriteOveruseConfigurationCache()
1070 cache.fetchThreshold("vendor_package.A", ComponentType.VENDOR), in testOverwriteOveruseConfigurationCache()
[all …]
/packages/services/Car/cpp/watchdog/server/src/
DIoOveruseConfigs.h104 virtual aidl::android::automotive::watchdog::PerStateBytes fetchThreshold(
209 aidl::android::automotive::watchdog::PerStateBytes fetchThreshold(
DIoOveruseMonitor.cpp319 const auto threshold = mIoOveruseConfigs->fetchThreshold(dailyIoUsage->packageInfo); in onPeriodicCollection()
683 const auto thresholdBytes = mIoOveruseConfigs->fetchThreshold(*packageInfo); in getIoOveruseStats()
DIoOveruseConfigs.cpp685 PerStateBytes IoOveruseConfigs::fetchThreshold(const PackageInfo& packageInfo) const { in fetchThreshold() function in android::automotive::watchdog::IoOveruseConfigs
/packages/services/Car/service/src/com/android/car/watchdog/
DOveruseConfigurationCache.java278 public PerStateBytes fetchThreshold(String genericPackageName, in fetchThreshold() method in OveruseConfigurationCache
DWatchdogPerfHandler.java2133 mOveruseConfigurationCache.fetchThreshold(usage.genericPackageName, componentType); in constructCarWatchdogIoOveruseStatsLocked()