Lines Matching refs:ObjectManager
25 ObjectManager::Object::Object() in Object()
29 ObjectManager::Object::~Object() = default;
31 ObjectManager::ObjectManager(Bus* bus, in ObjectManager() function in dbus::ObjectManager
47 base::Bind(&ObjectManager::NameOwnerChanged, in ObjectManager()
57 base::Bind(&ObjectManager::SetupMatchRuleAndFilter, this), in ObjectManager()
58 base::Bind(&ObjectManager::OnSetupMatchRuleAndFilterComplete, this)); in ObjectManager()
61 ObjectManager::~ObjectManager() { in ~ObjectManager()
77 void ObjectManager::RegisterInterface(const std::string& interface_name, in RegisterInterface()
82 void ObjectManager::UnregisterInterface(const std::string& interface_name) { in UnregisterInterface()
88 std::vector<ObjectPath> ObjectManager::GetObjects() { in GetObjects()
98 std::vector<ObjectPath> ObjectManager::GetObjectsWithInterface( in GetObjectsWithInterface()
115 ObjectProxy* ObjectManager::GetObjectProxy(const ObjectPath& object_path) { in GetObjectProxy()
124 PropertySet* ObjectManager::GetProperties(const ObjectPath& object_path, in GetProperties()
139 void ObjectManager::GetManagedObjects() { in GetManagedObjects()
146 base::Bind(&ObjectManager::OnGetManagedObjects, in GetManagedObjects()
150 void ObjectManager::CleanUp() { in CleanUp()
160 bus_->RemoveFilterFunction(&ObjectManager::HandleMessageThunk, this); in CleanUp()
170 bool ObjectManager::SetupMatchRuleAndFilter() { in SetupMatchRuleAndFilter()
191 bus_->AddFilterFunction(&ObjectManager::HandleMessageThunk, this); in SetupMatchRuleAndFilter()
198 bus_->RemoveFilterFunction(&ObjectManager::HandleMessageThunk, this); in SetupMatchRuleAndFilter()
208 void ObjectManager::OnSetupMatchRuleAndFilterComplete(bool success) { in OnSetupMatchRuleAndFilterComplete()
227 base::Bind(&ObjectManager::InterfacesAddedReceived, in OnSetupMatchRuleAndFilterComplete()
229 base::Bind(&ObjectManager::InterfacesAddedConnected, in OnSetupMatchRuleAndFilterComplete()
235 base::Bind(&ObjectManager::InterfacesRemovedReceived, in OnSetupMatchRuleAndFilterComplete()
237 base::Bind(&ObjectManager::InterfacesRemovedConnected, in OnSetupMatchRuleAndFilterComplete()
245 DBusHandlerResult ObjectManager::HandleMessageThunk(DBusConnection* connection, in HandleMessageThunk()
248 ObjectManager* self = reinterpret_cast<ObjectManager*>(user_data); in HandleMessageThunk()
252 DBusHandlerResult ObjectManager::HandleMessage(DBusConnection* connection, in HandleMessage()
303 base::Bind(&ObjectManager::NotifyPropertiesChanged, in HandleMessage()
318 void ObjectManager::NotifyPropertiesChanged( in NotifyPropertiesChanged()
332 void ObjectManager::NotifyPropertiesChangedHelper( in NotifyPropertiesChangedHelper()
351 void ObjectManager::OnGetManagedObjects(Response* response) { in OnGetManagedObjects()
374 void ObjectManager::InterfacesAddedReceived(Signal* signal) { in InterfacesAddedReceived()
388 void ObjectManager::InterfacesAddedConnected(const std::string& interface_name, in InterfacesAddedConnected()
395 void ObjectManager::InterfacesRemovedReceived(Signal* signal) { in InterfacesRemovedReceived()
412 void ObjectManager::InterfacesRemovedConnected( in InterfacesRemovedConnected()
421 void ObjectManager::UpdateObject(const ObjectPath& object_path, in UpdateObject()
440 void ObjectManager::AddInterface(const ObjectPath& object_path, in AddInterface()
473 void ObjectManager::RemoveInterface(const ObjectPath& object_path, in RemoveInterface()
502 void ObjectManager::NameOwnerChanged(const std::string& old_owner, in NameOwnerChanged()