Lines Matching refs:ExportedObject
32 ExportedObject::ExportedObject(Bus* bus, in ExportedObject() function in dbus::ExportedObject
40 ExportedObject::~ExportedObject() { in ~ExportedObject()
44 bool ExportedObject::ExportMethodAndBlock( in ExportMethodAndBlock()
71 void ExportedObject::ExportMethod(const std::string& interface_name, in ExportMethod()
77 base::Closure task = base::Bind(&ExportedObject::ExportMethodInternal, in ExportMethod()
86 void ExportedObject::SendSignal(Signal* signal) { in SendSignal()
108 base::Bind(&ExportedObject::SendSignalInternal, in SendSignal()
115 void ExportedObject::Unregister() { in Unregister()
125 void ExportedObject::ExportMethodInternal( in ExportMethodInternal()
136 base::Bind(&ExportedObject::OnExported, in ExportMethodInternal()
144 void ExportedObject::OnExported(OnExportedCallback on_exported_callback, in OnExported()
153 void ExportedObject::SendSignalInternal(base::TimeTicks start_time, in SendSignalInternal()
165 bool ExportedObject::Register() { in Register()
174 vtable.message_function = &ExportedObject::HandleMessageThunk; in Register()
175 vtable.unregister_function = &ExportedObject::OnUnregisteredThunk; in Register()
190 DBusHandlerResult ExportedObject::HandleMessage( in HandleMessage()
228 base::BindOnce(&ExportedObject::RunMethod, this, iter->second, in HandleMessage()
234 base::Bind(&ExportedObject::SendResponse, in HandleMessage()
245 void ExportedObject::RunMethod(MethodCallCallback method_call_callback, in RunMethod()
251 base::Bind(&ExportedObject::SendResponse, in RunMethod()
257 void ExportedObject::SendResponse(base::TimeTicks start_time, in SendResponse()
263 FROM_HERE, base::BindOnce(&ExportedObject::OnMethodCompleted, this, in SendResponse()
271 void ExportedObject::OnMethodCompleted(std::unique_ptr<MethodCall> method_call, in OnMethodCompleted()
303 void ExportedObject::OnUnregistered(DBusConnection* connection) { in OnUnregistered()
306 DBusHandlerResult ExportedObject::HandleMessageThunk( in HandleMessageThunk()
310 ExportedObject* self = reinterpret_cast<ExportedObject*>(user_data); in HandleMessageThunk()
314 void ExportedObject::OnUnregisteredThunk(DBusConnection *connection, in OnUnregisteredThunk()
316 ExportedObject* self = reinterpret_cast<ExportedObject*>(user_data); in OnUnregisteredThunk()