Searched refs:connectCallback (Results 1 - 13 of 13) sorted by relevance
/drivers/external_device_manager/services/native/driver_extension_manager/src/device_manager/ |
H A D | device.cpp | 81 int32_t Device::Connect(const sptr<IDriverExtMgrCallback> &connectCallback)
in Connect() argument 87 connectCallback->OnConnect(deviceId, drvExtRemote_, {UsbErrCode::EDM_OK, ""});
in Connect() 88 int32_t ret = RegisterDrvExtMgrCallback(connectCallback);
in Connect() 96 int32_t ret = RegisterDrvExtMgrCallback(connectCallback);
in Connect() 112 UnregisterDrvExtMgrCallback(connectCallback);
in Connect()
|
H A D | etx_device_mgr.cpp | 450 int32_t ExtDeviceManager::ConnectDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback) in ConnectDevice() argument 459 return device->Connect(connectCallback); in ConnectDevice()
|
/drivers/external_device_manager/interfaces/innerkits/ |
H A D | idriver_ext_mgr.h | 35 virtual UsbErrCode BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback) = 0;
|
H A D | driver_ext_mgr_client.h | 31 UsbErrCode BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback);
|
/drivers/external_device_manager/frameworks/native/ |
H A D | driver_ext_mgr_client.cpp | 107 UsbErrCode DriverExtMgrClient::BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback)
in BindDevice() argument 112 return proxy_->BindDevice(deviceId, connectCallback);
in BindDevice()
|
/drivers/external_device_manager/services/zidl/src/ |
H A D | driver_ext_mgr_stub.cpp | 93 EDM_LOGE(MODULE_FRAMEWORK, "failed to read remote object of connectCallback"); in OnBindDevice() 97 sptr<IDriverExtMgrCallback> connectCallback = iface_cast<IDriverExtMgrCallback>(remote); in OnBindDevice() local 98 if (connectCallback == nullptr) { in OnBindDevice() 99 EDM_LOGE(MODULE_FRAMEWORK, "failed to create connectCallback object"); in OnBindDevice() 103 UsbErrCode ret = BindDevice(deviceId, connectCallback); in OnBindDevice()
|
H A D | driver_ext_mgr_proxy.cpp | 77 UsbErrCode DriverExtMgrProxy::BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback)
in BindDevice() argument 99 if (connectCallback == nullptr || !data.WriteRemoteObject(connectCallback->AsObject())) {
in BindDevice() 100 EDM_LOGE(MODULE_FRAMEWORK, "failed to write connectCallback object");
in BindDevice()
|
/drivers/external_device_manager/test/unittest/driver_extension_manager_client_test/ |
H A D | driver_extension_manager_client_test.cpp | 182 sptr<IDriverExtMgrCallback> connectCallback = nullptr;
in HWTEST_F() local 183 UsbErrCode ret = DriverExtMgrClient::GetInstance().BindDevice(deviceId, connectCallback);
in HWTEST_F() 226 sptr<IDriverExtMgrCallback> connectCallback = new DriverExtMgrCallbackTest {};
in HWTEST_F() local 227 UsbErrCode ret = DriverExtMgrClient::GetInstance().BindDevice(deviceId, connectCallback);
in HWTEST_F()
|
/drivers/external_device_manager/services/zidl/include/ |
H A D | driver_ext_mgr_proxy.h | 30 UsbErrCode BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback) override;
|
/drivers/external_device_manager/services/native/driver_extension_manager/include/ |
H A D | driver_ext_mgr.h | 36 UsbErrCode BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback) override;
|
/drivers/external_device_manager/services/native/driver_extension_manager/include/device_manager/ |
H A D | etx_device_mgr.h | 43 int32_t ConnectDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback);
|
H A D | device.h | 35 int32_t Connect(const sptr<IDriverExtMgrCallback> &connectCallback);
|
/drivers/external_device_manager/services/native/driver_extension_manager/src/ |
H A D | driver_ext_mgr.cpp | 149 UsbErrCode DriverExtMgr::BindDevice(uint64_t deviceId, const sptr<IDriverExtMgrCallback> &connectCallback) in BindDevice() argument 157 return static_cast<UsbErrCode>(ExtDeviceManager::GetInstance().ConnectDevice(deviceId, connectCallback)); in BindDevice()
|
Completed in 7 milliseconds