Home
last modified time | relevance | path

Searched refs:CachedBoolProperty (Results 1 – 3 of 3) sorted by relevance

/system/libbase/include/android-base/
Dproperties.h145 class CachedBoolProperty {
147 explicit CachedBoolProperty(std::string property_name);
/system/libbase/
Dproperties.cpp302 CachedBoolProperty::CachedBoolProperty(std::string property_name) in CachedBoolProperty() function in android::base::CachedBoolProperty
315 std::optional<bool> CachedBoolProperty::GetOptional() { in GetOptional()
319 bool CachedBoolProperty::Get(bool default_value) { in Get()
Dproperties_test.cpp325 TEST(properties, CachedBoolProperty) { in TEST() argument
330 android::base::CachedBoolProperty cached_bool_property(key); in TEST()