Home
last modified time | relevance | path

Searched refs:bool_properties_ (Results 1 – 2 of 2) sorted by relevance

/system/connectivity/shill/
Dproperty_store.cc49 return (ContainsKey(bool_properties_, prop) || in Contains()
241 return GetProperty(name, value, error, bool_properties_, "a bool"); in GetBoolProperty()
336 return SetProperty(name, value, error, &bool_properties_, "a bool"); in SetBoolProperty()
433 if (ContainsKey(bool_properties_, name)) { in ClearProperty()
434 bool_properties_[name]->Clear(error); in ClearProperty()
477 return ReadablePropertyConstIterator<bool>(bool_properties_); in GetBoolPropertiesIter()
560 DCHECK(!Contains(name) || ContainsKey(bool_properties_, name)) in RegisterBool()
562 bool_properties_[name] = BoolAccessor(new PropertyAccessor<bool>(prop)); in RegisterBool()
566 DCHECK(!Contains(name) || ContainsKey(bool_properties_, name)) in RegisterConstBool()
568 bool_properties_[name] = BoolAccessor(new ConstPropertyAccessor<bool>(prop)); in RegisterConstBool()
[all …]
Dproperty_store.h290 std::map<std::string, BoolAccessor> bool_properties_; variable