• Home
  • Raw
  • Download

Lines Matching refs:PropertySet

26 void PropertyBase::Init(PropertySet* property_set, const std::string& name) {  in Init()
37 PropertySet::PropertySet( in PropertySet() function in dbus::PropertySet
46 PropertySet::~PropertySet() { in ~PropertySet()
49 void PropertySet::RegisterProperty(const std::string& name, in RegisterProperty()
55 void PropertySet::ConnectSignals() { in ConnectSignals()
60 base::Bind(&PropertySet::ChangedReceived, in ConnectSignals()
62 base::Bind(&PropertySet::ChangedConnected, in ConnectSignals()
67 void PropertySet::ChangedReceived(Signal* signal) { in ChangedReceived()
92 void PropertySet::ChangedConnected(const std::string& /* interface_name */, in ChangedConnected()
100 void PropertySet::Get(PropertyBase* property, GetCallback callback) { in Get()
109 base::Bind(&PropertySet::OnGet, in Get()
115 void PropertySet::OnGet(PropertyBase* property, GetCallback callback, in OnGet()
137 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()
223 void PropertySet::OnSet(PropertyBase* property, in OnSet()
231 bool PropertySet::UpdatePropertiesFromReader(MessageReader* reader) { in UpdatePropertiesFromReader()
246 bool PropertySet::UpdatePropertyFromReader(MessageReader* reader) { in UpdatePropertyFromReader()
271 bool PropertySet::InvalidatePropertiesFromReader(MessageReader* reader) { in InvalidatePropertiesFromReader()
296 void PropertySet::NotifyPropertyChanged(const std::string& name) { in NotifyPropertyChanged()