HomeSort by relevance Sort by last modified time
    Searched refs:GetUintProperty (Results 1 - 4 of 4) sorted by null

  /system/core/base/
properties.cpp 67 T GetUintProperty(const std::string& key, T default_value, T max) {
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);
properties_test.cpp 105 EXPECT_EQ(T(12), android::base::GetUintProperty<T>("debug.libbase.property_test", 45));
109 EXPECT_EQ(T(45), android::base::GetUintProperty<T>("debug.libbase.property_test", 45));
113 EXPECT_EQ(T(12), android::base::GetUintProperty<T>("debug.libbase.property_test", 33, 22));
115 EXPECT_EQ(T(5), android::base::GetUintProperty<T>("debug.libbase.property_test", 5, 10));
  /system/core/base/include/android-base/
properties.h 52 template <typename T> T GetUintProperty(const std::string& key,
  /system/core/init/
reboot.cpp 365 auto shutdown_timeout_property = android::base::GetUintProperty(

Completed in 74 milliseconds