Home
last modified time | relevance | path

Searched refs:UsbInterface (Results 1 - 20 of 20) sorted by relevance

/drivers/peripheral/usb/interfaces/ddk/host/
H A Dusb_ddk_interface.h176 struct UsbInterface { struct
325 * @return Returns the pointer to the <b>UsbInterface</b> structure if the operation is successful; returns <b>NULL</b>
328 struct UsbInterface *UsbClaimInterfaceUnforce(const struct UsbSession *session, uint8_t busNum,
342 * @return Returns the pointer to the <b>UsbInterface</b> structure if the operation is successful; returns <b>NULL</b>
345 struct UsbInterface *UsbClaimInterface(const struct UsbSession *session, uint8_t busNum,
359 * @return Returns the pointer to the <b>UsbInterface</b> structure if the operation is successful; returns <b>NULL</b>
362 struct UsbInterface *UsbManageInterface(const struct UsbSession *session, uint8_t busNum,
373 int32_t UsbReleaseInterface(const struct UsbInterface *interfaceObj);
395 UsbInterfaceHandle *UsbOpenInterface(const struct UsbInterface *interfaceObj);
415 UsbInterfaceHandle *UsbResetDevice(const struct UsbInterface *interfaceOb
[all...]
/drivers/peripheral/usb/test/unittest/host_sdk/
H A Dusb_host_sdk_if_test.h80 struct UsbInterface *ctrIface;
81 struct UsbInterface *intIface;
82 struct UsbInterface *dataIface;
98 struct UsbInterface *itface;
H A Dusb_host_sdk_if_test.cpp47 static struct UsbInterface *g_ecmDataIface = nullptr;
48 static struct UsbInterface *g_ecmIntIface = nullptr;
/drivers/peripheral/usb/sample/host/include/
H A Dusbhost_sdkapi_speed.h98 struct UsbInterface *ctrIface;
113 struct UsbInterface *itface;
127 struct UsbInterface *iface[USB_MAX_INTERFACES];
/drivers/peripheral/usb/sample/host/liteos_test/include/
H A Dusbhost_sdkapi_speed.h95 struct UsbInterface *ctrIface;
110 struct UsbInterface *itface;
124 struct UsbInterface *iface[USB_MAX_INTERFACES];
H A Dusbhost_nosdk_speed.h92 struct UsbInterface *ctrIface;
107 struct UsbInterface *itface;
121 struct UsbInterface *iface[USB_MAX_INTERFACES];
/drivers/peripheral/usb/net/include/
H A Dcdc_ether.h87 struct UsbInterface *ctrIface;
101 struct UsbInterface *itface;
115 struct UsbInterface *iface[USB_MAX_INTERFACES];
/drivers/hdf_core/framework/test/unittest/model/usb/host/include/
H A Dusb_test.h162 struct UsbInterface *ctrIface;
163 struct UsbInterface *intIface;
164 struct UsbInterface *dataIface;
182 struct UsbInterface *itface;
/drivers/peripheral/usb/serial/include/
H A Dusb_serial.h102 struct UsbInterface *ctrIface;
117 struct UsbInterface *itface;
131 struct UsbInterface *iface[USB_MAX_INTERFACES];
/drivers/peripheral/usb/hdi_service/include/
H A Dusbd.h100 struct UsbInterface *ctrIface;
105 struct UsbInterface *iface[USB_MAX_INTERFACES];
H A Dusbd_dispatcher.h74 static UsbInterface *GetUsbInterfaceById(const HostDevice *dev, uint8_t interfaceIndex);
76 const HostDevice *dev, UsbInterface *interface, uint8_t pipeAddr, UsbPipeInfo *pipe);
/drivers/peripheral/usb/ddk/host/include/
H A Dusb_interface_pool.h54 struct UsbInterface interface;
/drivers/hdf_core/framework/test/unittest/model/usb/host/src/
H A Dusb_test.c26 static struct UsbInterface *g_ecmDataIface = NULL;
27 static struct UsbInterface *g_ecmIntIface = NULL;
251 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface001()
274 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface002()
297 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface003()
320 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface004()
333 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface005()
346 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface006()
354 (struct UsbInterface *)UsbClaimInterface(g_acm->session, g_acm->busNum, g_acm->devAddr, g_acm->interfaceIndex); in CheckHostSdkIfClaimInterface006()
362 (struct UsbInterface *)UsbClaimInterfac in CheckHostSdkIfClaimInterface006()
[all...]
/drivers/peripheral/usb/ddk/host/src/
H A Dusb_interface_pool.c1012 static struct UsbInterface *ClaimInterface( in ClaimInterface()
1064 return (struct UsbInterface *)interfaceObj; in ClaimInterface()
1070 struct UsbInterface *UsbManageInterface( in UsbManageInterface()
1119 return (struct UsbInterface *)interfaceObj; in UsbManageInterface()
1125 struct UsbInterface *UsbClaimInterfaceUnforce( in UsbClaimInterfaceUnforce()
1128 struct UsbInterface *interfaceObj = ClaimInterface(session, busNum, usbAddr, interfaceIndex, false); in UsbClaimInterfaceUnforce()
1145 struct UsbInterface *UsbClaimInterface( in UsbClaimInterface()
1161 int32_t UsbReleaseInterface(const struct UsbInterface *interfaceObj) in UsbReleaseInterface()
1255 UsbInterfaceHandle *UsbOpenInterface(const struct UsbInterface *interfaceObj) in UsbOpenInterface()
1307 UsbInterfaceHandle *UsbResetDevice(const struct UsbInterface *interfaceOb
[all...]
/drivers/peripheral/usb/ddk_service/src/
H A Dusb_ddk_service.cpp66 struct UsbInterface *interface = nullptr; in ReleaseUsbInterface()
219 struct UsbInterface *interface = in ClaimInterface()
263 struct UsbInterface *interface = nullptr; in SelectInterfaceSetting()
/drivers/peripheral/usb/hdi_service/src/
H A Dusbd_dispatcher.cpp98 UsbInterface *UsbdDispatcher::GetUsbInterfaceById(const HostDevice *dev, uint8_t interfaceIndex) in GetUsbInterfaceById()
105 UsbInterface *tmpIf = UsbClaimInterface(dev->service->session_, dev->busNum, dev->devAddr, interfaceIndex); in GetUsbInterfaceById()
113 const HostDevice *dev, UsbInterface *interface, uint8_t pipeAddr, UsbPipeInfo *pipe) in GetInterfacePipe()
160 UsbInterface *interface = dev->iface[interfaceId]; in GetPipe()
/drivers/peripheral/usb/sample/host/liteos_test/src/
H A Dusbhost_sdkapi_speed.c215 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex) in GetUsbInterfaceById()
/drivers/peripheral/usb/sample/host/src/
H A Dusbhost_sdkapi_speed.c204 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex) in GetUsbInterfaceById()
/drivers/peripheral/usb/net/src/
H A Dcdc_ether.c47 static struct UsbInterface *EcmGetUsbInterfaceById(struct EcmDevice *ecm, uint8_t interfaceIndex);
567 static struct UsbInterface *EcmGetUsbInterfaceById(struct EcmDevice *ecm, uint8_t interfaceIndex) in EcmGetUsbInterfaceById()
/drivers/peripheral/usb/serial/src/
H A Dusb_serial.c37 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex);
1118 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex) in GetUsbInterfaceById()

Completed in 18 milliseconds