Lines Matching refs:object_path

34                              const ObjectPath& object_path)  in ObjectManager()  argument
37 object_path_(object_path), in ObjectManager()
115 ObjectProxy* ObjectManager::GetObjectProxy(const ObjectPath& object_path) { in GetObjectProxy() argument
116 ObjectMap::iterator iter = object_map_.find(object_path); in GetObjectProxy()
124 PropertySet* ObjectManager::GetProperties(const ObjectPath& object_path, in GetProperties() argument
126 ObjectMap::iterator iter = object_map_.find(object_path); in GetProperties()
319 const dbus::ObjectPath object_path, in NotifyPropertiesChanged() argument
324 NotifyPropertiesChangedHelper(object_path, signal); in NotifyPropertiesChanged()
333 const dbus::ObjectPath object_path, in NotifyPropertiesChangedHelper() argument
346 PropertySet* properties = GetProperties(object_path, interface); in NotifyPropertiesChangedHelper()
360 ObjectPath object_path; in OnGetManagedObjects() local
362 !dict_entry_reader.PopObjectPath(&object_path)) in OnGetManagedObjects()
365 UpdateObject(object_path, &dict_entry_reader); in OnGetManagedObjects()
377 ObjectPath object_path; in InterfacesAddedReceived() local
378 if (!reader.PopObjectPath(&object_path)) { in InterfacesAddedReceived()
385 UpdateObject(object_path, &reader); in InterfacesAddedReceived()
399 ObjectPath object_path; in InterfacesRemovedReceived() local
401 if (!reader.PopObjectPath(&object_path) || in InterfacesRemovedReceived()
410 RemoveInterface(object_path, interface_names[i]); in InterfacesRemovedReceived()
422 void ObjectManager::UpdateObject(const ObjectPath& object_path, in UpdateObject() argument
436 AddInterface(object_path, interface_name, &dict_entry_reader); in UpdateObject()
441 void ObjectManager::AddInterface(const ObjectPath& object_path, in AddInterface() argument
449 ObjectMap::iterator oiter = object_map_.find(object_path); in AddInterface()
452 object = object_map_[object_path] = new Object; in AddInterface()
453 object->object_proxy = bus_->GetObjectProxy(service_name_, object_path); in AddInterface()
464 object_path, interface_name); in AddInterface()
471 interface->ObjectAdded(object_path, interface_name); in AddInterface()
474 void ObjectManager::RemoveInterface(const ObjectPath& object_path, in RemoveInterface() argument
476 ObjectMap::iterator oiter = object_map_.find(object_path); in RemoveInterface()
491 interface->ObjectRemoved(object_path, interface_name); in RemoveInterface()
516 const dbus::ObjectPath object_path = tmp->first; in NameOwnerChanged() local
527 RemoveInterface(object_path, *iiter); in NameOwnerChanged()