• Home
  • Raw
  • Download

Lines Matching refs:object_path

33                              const ObjectPath& object_path)  in ObjectManager()  argument
36 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()
398 ObjectPath object_path; in InterfacesRemovedReceived() local
400 if (!reader.PopObjectPath(&object_path) || in InterfacesRemovedReceived()
409 RemoveInterface(object_path, interface_names[i]); in InterfacesRemovedReceived()
421 void ObjectManager::UpdateObject(const ObjectPath& object_path, in UpdateObject() argument
435 AddInterface(object_path, interface_name, &dict_entry_reader); in UpdateObject()
440 void ObjectManager::AddInterface(const ObjectPath& object_path, in AddInterface() argument
448 ObjectMap::iterator oiter = object_map_.find(object_path); in AddInterface()
451 object = object_map_[object_path] = new Object; in AddInterface()
452 object->object_proxy = bus_->GetObjectProxy(service_name_, object_path); in AddInterface()
463 object_path, interface_name); in AddInterface()
470 interface->ObjectAdded(object_path, interface_name); in AddInterface()
473 void ObjectManager::RemoveInterface(const ObjectPath& object_path, in RemoveInterface() argument
475 ObjectMap::iterator oiter = object_map_.find(object_path); in RemoveInterface()
490 interface->ObjectRemoved(object_path, interface_name); in RemoveInterface()
515 const dbus::ObjectPath object_path = tmp->first; in NameOwnerChanged() local
526 RemoveInterface(object_path, *iiter); in NameOwnerChanged()