Lines Matching refs:defaultValue
28 const std::string& defaultValue) const { in getProperty()
29 return defaultValue; in getProperty()
33 uint64_t defaultValue) const { in getUintProperty()
34 return defaultValue; in getUintProperty()
37 bool PropertyFetcherNoOp::getBoolProperty(const std::string&, bool defaultValue) const { in getBoolProperty()
38 return defaultValue; in getBoolProperty()
42 const std::string& defaultValue) const { in getProperty()
43 return android::base::GetProperty(key, defaultValue); in getProperty()
46 uint64_t PropertyFetcherImpl::getUintProperty(const std::string& key, uint64_t defaultValue, in getUintProperty() argument
48 return android::base::GetUintProperty(key, defaultValue, max); in getUintProperty()
51 bool PropertyFetcherImpl::getBoolProperty(const std::string& key, bool defaultValue) const { in getBoolProperty()
52 return android::base::GetBoolProperty(key, defaultValue); in getBoolProperty()