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

  /system/core/base/
properties_test.cpp 83 EXPECT_EQ(T(-12), android::base::GetIntProperty<T>("debug.libbase.property_test", 45));
85 EXPECT_EQ(T(12), android::base::GetIntProperty<T>("debug.libbase.property_test", 45));
89 EXPECT_EQ(T(45), android::base::GetIntProperty<T>("debug.libbase.property_test", 45));
93 EXPECT_EQ(T(45), android::base::GetIntProperty<T>("debug.libbase.property_test", 45, 1, 2));
95 EXPECT_EQ(T(1), android::base::GetIntProperty<T>("debug.libbase.property_test", 45, 1, 2));
97 EXPECT_EQ(T(2), android::base::GetIntProperty<T>("debug.libbase.property_test", 45, 1, 2));
99 EXPECT_EQ(T(45), android::base::GetIntProperty<T>("debug.libbase.property_test", 45, 1, 2));
properties.cpp 59 T GetIntProperty(const std::string& key, T default_value, T min, T max) {
74 template int8_t GetIntProperty(const std::string&, int8_t, int8_t, int8_t);
75 template int16_t GetIntProperty(const std::string&, int16_t, int16_t, int16_t);
76 template int32_t GetIntProperty(const std::string&, int32_t, int32_t, int32_t);
77 template int64_t GetIntProperty(const std::string&, int64_t, int64_t, int64_t);
  /system/core/base/include/android-base/
properties.h 44 template <typename T> T GetIntProperty(const std::string& key,
  /system/core/debuggerd/tombstoned/
tombstoned.cpp 47 using android::base::GetIntProperty;
100 GetIntProperty("tombstoned.max_tombstone_count", 10),
107 GetIntProperty("tombstoned.max_anr_count", 64),
  /frameworks/av/media/mtp/
MtpFfsHandle.cpp 588 mMaxWrite = android::base::GetIntProperty("sys.usb.ffs.max_write", USB_FFS_MAX_WRITE);
589 mMaxRead = android::base::GetIntProperty("sys.usb.ffs.max_read", USB_FFS_MAX_READ);
  /bootable/recovery/
install.cpp 183 android::base::GetIntProperty("ro.build.date.utc", std::numeric_limits<int64_t>::max());
screen_ui.cpp 57 density_(static_cast<float>(android::base::GetIntProperty("ro.sf.lcd_density", 160)) / 160.f),
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp     [all...]

Completed in 177 milliseconds