Home
last modified time | relevance | path

Searched refs:DBusInterface (Results 1 – 8 of 8) sorted by relevance

/external/libbrillo/brillo/dbus/
Ddbus_object.cc21 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()
[all …]
Ddbus_object.h117 class BRILLO_EXPORT DBusInterface final {
119 DBusInterface(DBusObject* dbus_object, const std::string& interface_name);
436 inline static void Add(DBusInterface* self, in Add()
505 base::WeakPtrFactory<DBusInterface> weak_factory_{this};
506 DISALLOW_COPY_AND_ASSIGN(DBusInterface);
514 DBusInterface* prop_interface, ExportedPropertySet* property_set)>;
538 DBusInterface* AddOrGetInterface(const std::string& interface_name);
542 DBusInterface* FindInterface(const std::string& interface_name) const;
589 std::map<std::string, std::unique_ptr<DBusInterface>> interfaces_;
604 friend class DBusInterface; variable
Ddbus_object_test_helpers.h27 static void HandleMethodCall(DBusInterface* itf, in HandleMethodCall()
58 DBusInterface* itf = object.FindInterface(method_call->GetInterface()); in CallMethod()
Dexported_property_set.h53 class DBusInterface; variable
106 void OnPropertiesInterfaceExported(DBusInterface* prop_interface);
Ddbus_object_unittest.cc124 DBusInterface* itf1 = dbus_object_->AddOrGetInterface(kTestInterface1); in SetUp()
133 DBusInterface* itf2 = dbus_object_->AddOrGetInterface(kTestInterface2); in SetUp()
137 DBusInterface* itf3 = dbus_object_->AddOrGetInterface(kTestInterface3); in SetUp()
416 DBusInterface* itf1 = dbus_object_->AddOrGetInterface(kTestInterface1); in TEST_F()
Dexported_property_set_unittest.cc84 DBusInterface* itf1 = dbus_object_.AddOrGetInterface(kTestInterface1); in Properties()
90 DBusInterface* itf2 = dbus_object_.AddOrGetInterface(kTestInterface2); in Properties()
93 DBusInterface* itf3 = dbus_object_.AddOrGetInterface(kTestInterface3); in Properties()
340 DBusInterface* itf1 = p_->dbus_object_.AddOrGetInterface(kTestInterface1); in TEST_F()
Dexported_object_manager.cc27 DBusInterface* itf = in RegisterAsync()
Dexported_property_set.cc26 DBusInterface* prop_interface) { in OnPropertiesInterfaceExported()