Home
last modified time | relevance | path

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

/system/connectivity/shill/
Dproperty_store.cc57 ContainsKey(uint8_properties_, prop) || in Contains()
299 return GetProperty(name, value, error, uint8_properties_, "a uint8_t"); in GetUint8Property()
389 return SetProperty(name, value, error, &uint8_properties_, "a uint8_t"); in SetUint8Property()
449 } else if (ContainsKey(uint8_properties_, name)) { in ClearProperty()
450 uint8_properties_[name]->Clear(error); in ClearProperty()
531 return ReadablePropertyConstIterator<uint8_t>(uint8_properties_); in GetUint8PropertiesIter()
710 DCHECK(!Contains(name) || ContainsKey(uint8_properties_, name)) in RegisterUint8()
712 uint8_properties_[name] = Uint8Accessor(new PropertyAccessor<uint8_t>(prop)); in RegisterUint8()
717 DCHECK(!Contains(name) || ContainsKey(uint8_properties_, name)) in RegisterConstUint8()
719 uint8_properties_[name] = in RegisterConstUint8()
[all …]
Dproperty_store.h300 std::map<std::string, Uint8Accessor> uint8_properties_; variable