Searched refs:ExportedObject (Results 1 – 14 of 14) sorted by relevance
/external/libchrome/dbus/ |
D | exported_object.cc | 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() [all …]
|
D | exported_object.h | 35 class CHROME_DBUS_EXPORT ExportedObject 36 : public base::RefCountedThreadSafe<ExportedObject> { 40 ExportedObject(Bus* bus, const ObjectPath& object_path); 109 virtual ~ExportedObject(); 112 friend class base::RefCountedThreadSafe<ExportedObject>;
|
D | bus_unittest.cc | 192 ExportedObject* object_proxy1 = in TEST() 197 ExportedObject* object_proxy2 = in TEST() 203 ExportedObject* object_proxy3 = in TEST() 225 ExportedObject* object_proxy1 = in TEST() 238 ExportedObject* object_proxy2 = in TEST()
|
D | bus.h | 33 class ExportedObject; variable 317 virtual ExportedObject* GetExportedObject(const ObjectPath& object_path); 609 scoped_refptr<dbus::ExportedObject> exported_object); 720 scoped_refptr<dbus::ExportedObject>> ExportedObjectTable;
|
D | mock_exported_object.cc | 11 : ExportedObject(bus, object_path) { in MockExportedObject()
|
D | mock_exported_object.h | 17 class MockExportedObject : public ExportedObject {
|
D | mock_bus.h | 29 MOCK_METHOD1(GetExportedObject, ExportedObject*(
|
D | bus.cc | 256 ExportedObject* Bus::GetExportedObject(const ObjectPath& object_path) { in GetExportedObject() 265 scoped_refptr<ExportedObject> exported_object = in GetExportedObject() 266 new ExportedObject(this, object_path); in GetExportedObject() 281 scoped_refptr<ExportedObject> exported_object = iter->second; in UnregisterExportedObject() 296 scoped_refptr<ExportedObject> exported_object) { in UnregisterExportedObjectInternal()
|
/external/libchrome/libchrome_tools/patches/ |
D | dbus-Support-UnexportMethod-from-an-exported-object.patch | 7 registered to an ExportedObject. A support to do so is required to 24 @@ -68,6 +68,22 @@ bool ExportedObject::ExportMethodAndBlock( 28 +bool ExportedObject::UnexportMethodAndBlock(const std::string& interface_name, 44 void ExportedObject::ExportMethod(const std::string& interface_name, 47 @@ -83,6 +99,18 @@ void ExportedObject::ExportMethod(const std::string& interface_name, 51 +void ExportedObject::UnexportMethod( 58 + base::Bind(&ExportedObject::UnexportMethodInternal, this, interface_name, 63 void ExportedObject::SendSignal(Signal* signal) { 66 @@ -141,6 +169,19 @@ void ExportedObject::ExportMethodInternal( 70 +void ExportedObject::UnexportMethodInternal( [all …]
|
D | dbus-Make-Bus-is_connected-mockable.patch | 57 @@ -280,7 +280,7 @@ void ExportedObject::OnMethodCompleted(std::unique_ptr<MethodCall> method_call,
|
/external/javassist/src/main/javassist/tools/rmi/ |
D | AppletServer.java | 50 private Map<String,ExportedObject> exportedNames; 51 private List<ExportedObject> exportedObjects; 94 exportedNames = new Hashtable<String,ExportedObject>(); in AppletServer() 95 exportedObjects = new Vector<ExportedObject>(); in AppletServer() 124 ExportedObject eo = new ExportedObject(); in exportObject() 167 ExportedObject eo = exportedObjects.get(objectId); in processRMI() 209 ExportedObject eo = exportedObjects.get(ref.oid); in readParameters() 236 ExportedObject found = exportedNames.get(name); in lookupName() 256 class ExportedObject { class
|
/external/libbrillo/brillo/dbus/ |
D | dbus_object.cc | 61 dbus::ExportedObject* exported_object, in ExportAsync() 97 dbus::ExportedObject* exported_object, in ExportAndBlock() 124 dbus::ExportedObject* exported_object, in UnexportAsync() 149 dbus::ExportedObject* exported_object, in UnexportAndBlock()
|
D | dbus_object.h | 477 ::dbus::ExportedObject* exported_object, 489 ::dbus::ExportedObject* exported_object, 494 ::dbus::ExportedObject* exported_object, 499 ::dbus::ExportedObject* exported_object, 637 ::dbus::ExportedObject* exported_object_ = nullptr; // weak; owned by |bus_|.
|
D | dbus_method_response.h | 27 using ResponseSender = ::dbus::ExportedObject::ResponseSender;
|