Lines Matching refs:DBusInterface
21 void SetupDefaultPropertyHandlers(DBusInterface* prop_interface, in SetupDefaultPropertyHandlers()
38 DBusInterface::DBusInterface(DBusObject* dbus_object, in DBusInterface() function in brillo::dbus_utils::DBusInterface
43 void DBusInterface::AddProperty(const std::string& property_name, in AddProperty()
49 void DBusInterface::RemoveProperty(const std::string& property_name) { in RemoveProperty()
54 void DBusInterface::ExportAsync( in ExportAsync()
70 base::Bind(&DBusInterface::HandleMethodCall, base::Unretained(this)); in ExportAsync()
80 base::Bind(&DBusInterface::ClaimInterface, in ExportAsync()
90 void DBusInterface::ExportAndBlock( in ExportAndBlock()
101 base::Bind(&DBusInterface::HandleMethodCall, base::Unretained(this)); in ExportAndBlock()
118 void DBusInterface::ClaimInterface( in ClaimInterface()
133 void DBusInterface::HandleMethodCall(dbus::MethodCall* method_call, in HandleMethodCall()
154 void DBusInterface::AddHandlerImpl( in AddHandlerImpl()
163 void DBusInterface::AddSignalImpl( in AddSignalImpl()
201 DBusInterface* DBusObject::AddOrGetInterface( in AddOrGetInterface()
208 std::unique_ptr<DBusInterface> new_itf( in AddOrGetInterface()
209 new DBusInterface(this, interface_name)); in AddOrGetInterface()
216 DBusInterface* DBusObject::FindInterface( in FindInterface()
302 DBusInterface* prop_interface = AddOrGetInterface(dbus::kPropertiesInterface); in RegisterPropertiesInterface()