Lines Matching refs:PropertySet
28 void PropertyBase::Init(PropertySet* property_set, const std::string& name) { in Init()
39 PropertySet::PropertySet( in PropertySet() function in dbus::PropertySet
48 PropertySet::~PropertySet() = default;
50 void PropertySet::RegisterProperty(const std::string& name, in RegisterProperty()
56 void PropertySet::ConnectSignals() { in ConnectSignals()
61 base::Bind(&PropertySet::ChangedReceived, in ConnectSignals()
63 base::Bind(&PropertySet::ChangedConnected, in ConnectSignals()
68 void PropertySet::ChangedReceived(Signal* signal) { in ChangedReceived()
93 void PropertySet::ChangedConnected(const std::string& interface_name, in ChangedConnected()
101 void PropertySet::Get(PropertyBase* property, GetCallback callback) { in Get()
110 base::Bind(&PropertySet::OnGet, in Get()
116 void PropertySet::OnGet(PropertyBase* property, GetCallback callback, in OnGet()
138 bool PropertySet::GetAndBlock(PropertyBase* property) { in GetAndBlock()
166 void PropertySet::GetAll() { in GetAll()
174 base::Bind(&PropertySet::OnGetAll, in GetAll()
178 void PropertySet::OnGetAll(Response* response) { in OnGetAll()
191 void PropertySet::Set(PropertyBase* property, SetCallback callback) { in Set()
201 base::Bind(&PropertySet::OnSet, in Set()
207 bool PropertySet::SetAndBlock(PropertyBase* property) { in SetAndBlock()
222 void PropertySet::OnSet(PropertyBase* property, in OnSet()
230 bool PropertySet::UpdatePropertiesFromReader(MessageReader* reader) { in UpdatePropertiesFromReader()
245 bool PropertySet::UpdatePropertyFromReader(MessageReader* reader) { in UpdatePropertyFromReader()
270 bool PropertySet::InvalidatePropertiesFromReader(MessageReader* reader) { in InvalidatePropertiesFromReader()
295 void PropertySet::NotifyPropertyChanged(const std::string& name) { in NotifyPropertyChanged()