Home
last modified time | relevance | path

Searched refs:dbus_object_ (Results 1 – 9 of 9) sorted by relevance

/external/libbrillo/brillo/dbus/
Ddbus_object_unittest.cc121 dbus_object_ = std::unique_ptr<DBusObject>( in SetUp()
124 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()
145 dbus_object_->RegisterAsync( in SetUp()
156 std::unique_ptr<DBusObject> dbus_object_; member in brillo::dbus_utils::DBusObjectTest
166 auto response = testing::CallMethod(*dbus_object_, &method_call); in TEST_F()
179 auto response = testing::CallMethod(*dbus_object_, &method_call); in TEST_F()
192 auto response = testing::CallMethod(*dbus_object_, &method_call); in TEST_F()
205 auto response = testing::CallMethod(*dbus_object_, &method_call); in TEST_F()
[all …]
Dexported_property_set_unittest.cc81 : dbus_object_(nullptr, bus, path) { in Properties()
84 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()
103 dbus_object_.RegisterAsync( in Properties()
108 DBusObject dbus_object_; member
135 auto response = testing::CallMethod(p_->dbus_object_, method_call); in AssertMethodReturnsError()
148 return testing::CallMethod(p_->dbus_object_, &method_call); in GetPropertyOnInterface()
162 return testing::CallMethod(p_->dbus_object_, &method_call); in SetPropertyOnInterface()
231 auto response = testing::CallMethod(p_->dbus_object_, &method_call); in TEST_F()
[all …]
Dexported_object_manager.cc20 : bus_(bus), dbus_object_(nullptr, bus, path) { in ExportedObjectManager()
28 dbus_object_.AddOrGetInterface(dbus::kObjectManagerInterface); in RegisterAsync()
37 dbus_object_.RegisterAsync(completion_callback); in RegisterAsync()
Ddbus_signal.cc17 dbus_object_(dbus_object) { in DBusSignalBase()
24 return dbus_object_->SendSignal(signal); in SendSignal()
Ddbus_object.cc40 : dbus_object_(dbus_object), interface_name_(interface_name) { in DBusInterface()
45 dbus_object_->property_set_.RegisterProperty( in AddProperty()
50 dbus_object_->property_set_.UnregisterProperty(interface_name_, in RemoveProperty()
78 dbus_object_->property_set_.GetPropertyWriter(interface_name_); in ExportAsync()
110 dbus_object_->property_set_.GetPropertyWriter(interface_name_); in ExportAndBlock()
Dexported_object_manager.h116 brillo::dbus_utils::DBusObject* dbus_object() { return &dbus_object_; }; in dbus_object()
122 brillo::dbus_utils::DBusObject dbus_object_; variable
Ddbus_signal.h39 DBusObject* dbus_object_;
Ddbus_object.h410 dbus_object_, interface_name_, signal_name); in RegisterSignalOfType()
501 DBusObject* dbus_object_; variable
Dexported_object_manager_unittest.cc128 return brillo::dbus_utils::testing::CallMethod(om_->dbus_object_, in CallHandleGetManagedObjects()