Searched refs:GetUintProperty (Results 1 – 4 of 4) sorted by relevance
/system/core/base/ |
D | properties.cpp | 67 T GetUintProperty(const std::string& key, T default_value, T max) { in GetUintProperty() function 79 template uint8_t GetUintProperty(const std::string&, uint8_t, uint8_t); 80 template uint16_t GetUintProperty(const std::string&, uint16_t, uint16_t); 81 template uint32_t GetUintProperty(const std::string&, uint32_t, uint32_t); 82 template uint64_t GetUintProperty(const std::string&, uint64_t, uint64_t);
|
D | properties_test.cpp | 105 EXPECT_EQ(T(12), android::base::GetUintProperty<T>("debug.libbase.property_test", 45)); in CheckGetUintProperty() 109 EXPECT_EQ(T(45), android::base::GetUintProperty<T>("debug.libbase.property_test", 45)); in CheckGetUintProperty() 113 EXPECT_EQ(T(12), android::base::GetUintProperty<T>("debug.libbase.property_test", 33, 22)); in CheckGetUintProperty() 115 EXPECT_EQ(T(5), android::base::GetUintProperty<T>("debug.libbase.property_test", 5, 10)); in CheckGetUintProperty()
|
/system/core/base/include/android-base/ |
D | properties.h | 52 template <typename T> T GetUintProperty(const std::string& key,
|
/system/core/init/ |
D | reboot.cpp | 327 android::base::GetUintProperty("ro.build.shutdown_timeout", shutdownTimeoutDefault); in DoReboot()
|