Home
last modified time | relevance | path

Searched refs:GetUintProperty (Results 1 – 8 of 8) sorted by relevance

/aosp14/system/core/llkd/tests/
H A Dllkd_test.cpp41 milliseconds GetUintProperty(const std::string& key, milliseconds def) { in GetUintProperty() function
42 return milliseconds(android::base::GetUintProperty(key, static_cast<uint64_t>(def.count()), in GetUintProperty()
46 seconds GetUintProperty(const std::string& key, seconds def) { in GetUintProperty() function
47 return seconds(android::base::GetUintProperty(key, static_cast<uint64_t>(def.count()), in GetUintProperty()
78 if ((GetUintProperty(LLK_TIMEOUT_MS_PROPERTY, LLK_TIMEOUT_MS_DEFAULT) != in llkdSleepPeriod()
80 (GetUintProperty(LLK_CHECK_MS_PROPERTY, in llkdSleepPeriod()
120 khtTimeout = GetUintProperty(KHT_TIMEOUT_PROPERTY, khtTimeout); in llkdSleepPeriod()
123 llkTimeoutMs = GetUintProperty(LLK_TIMEOUT_MS_PROPERTY, llkTimeoutMs); in llkdSleepPeriod()
128 auto timeout = GetUintProperty((state == 'Z') ? LLK_Z_TIMEOUT_MS_PROPERTY in llkdSleepPeriod()
139 llkCheckMs = GetUintProperty(LLK_CHECK_MS_PROPERTY, llkCheckMs); in llkdSleepPeriod()
/aosp14/system/core/llkd/
H A Dlibllkd.cpp580 milliseconds GetUintProperty(const std::string& key, milliseconds def) { in GetUintProperty() function
581 return milliseconds(android::base::GetUintProperty(key, static_cast<uint64_t>(def.count()), in GetUintProperty()
585 seconds GetUintProperty(const std::string& key, seconds def) { in GetUintProperty() function
586 return seconds(android::base::GetUintProperty(key, static_cast<uint64_t>(def.count()), in GetUintProperty()
1303 khtTimeout = GetUintProperty(KHT_TIMEOUT_PROPERTY, khtTimeout); in llkInit()
1310 llkTimeoutMs = GetUintProperty(LLK_TIMEOUT_MS_PROPERTY, llkTimeoutMs); in llkInit()
1312 llkStateTimeoutMs[llkStateD] = GetUintProperty(LLK_D_TIMEOUT_MS_PROPERTY, llkTimeoutMs); in llkInit()
1313 llkStateTimeoutMs[llkStateZ] = GetUintProperty(LLK_Z_TIMEOUT_MS_PROPERTY, llkTimeoutMs); in llkInit()
1315 llkStateTimeoutMs[llkStateStack] = GetUintProperty(LLK_STACK_TIMEOUT_MS_PROPERTY, llkTimeoutMs); in llkInit()
1317 llkCheckMs = GetUintProperty(LLK_CHECK_MS_PROPERTY, llkCheckMs); in llkInit()
/aosp14/system/core/libprocessgroup/setup/
H A Dcgroup_map_write.cpp48 using android::base::GetUintProperty;
234 unsigned int api_level = GetUintProperty<unsigned int>("ro.product.first_api_level", 0); in ReadDescriptors()
/aosp14/system/core/init/
H A Dreboot.cpp75 using android::base::GetUintProperty;
331 auto shutdown_watchdog_timeout = android::base::GetUintProperty( in RebootMonitorThread()
624 auto shutdown_timeout_final = android::base::GetUintProperty("ro.build.shutdown_timeout", in DoReboot()
821 auto value = GetUintProperty(name, static_cast<uint64_t>(default_value.count())); in GetMillisProperty()
H A Dservice.cpp507 android::base::GetUintProperty(limit_property_, computed_limit_in_bytes, SIZE_MAX); in ConfigureMemcg()
/aosp14/system/core/libprocessgroup/
H A Dtask_profiles.cpp42 using android::base::GetUintProperty;
789 unsigned int api_level = GetUintProperty<unsigned int>("ro.product.first_api_level", 0); in TaskProfiles()
/aosp14/system/core/fs_mgr/
H A Dfs_mgr.cpp99 using android::base::GetUintProperty;
1220 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>( in UpdateCheckpointPartition()
1664 auto value = GetUintProperty(name, static_cast<uint64_t>(default_value.count())); in GetMillisProperty()
H A Dfs_mgr_overlayfs.cpp1116 auto size = android::base::GetUintProperty<uint64_t>(kDataScratchSizeMbProp, 0) * 1_MiB; in CreateScratchOnData()