/drivers/peripheral/usb/interfaces/ddk/host/ |
H A D | usb_ddk_interface.h | 176 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 D | usb_host_sdk_if_test.h | 80 struct UsbInterface *ctrIface; 81 struct UsbInterface *intIface; 82 struct UsbInterface *dataIface; 98 struct UsbInterface *itface;
|
H A D | usb_host_sdk_if_test.cpp | 47 static struct UsbInterface *g_ecmDataIface = nullptr; 48 static struct UsbInterface *g_ecmIntIface = nullptr;
|
/drivers/peripheral/usb/sample/host/include/ |
H A D | usbhost_sdkapi_speed.h | 98 struct UsbInterface *ctrIface; 113 struct UsbInterface *itface; 127 struct UsbInterface *iface[USB_MAX_INTERFACES];
|
/drivers/peripheral/usb/sample/host/liteos_test/include/ |
H A D | usbhost_sdkapi_speed.h | 95 struct UsbInterface *ctrIface; 110 struct UsbInterface *itface; 124 struct UsbInterface *iface[USB_MAX_INTERFACES];
|
H A D | usbhost_nosdk_speed.h | 92 struct UsbInterface *ctrIface; 107 struct UsbInterface *itface; 121 struct UsbInterface *iface[USB_MAX_INTERFACES];
|
/drivers/peripheral/usb/net/include/ |
H A D | cdc_ether.h | 87 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 D | usb_test.h | 162 struct UsbInterface *ctrIface; 163 struct UsbInterface *intIface; 164 struct UsbInterface *dataIface; 182 struct UsbInterface *itface;
|
/drivers/peripheral/usb/serial/include/ |
H A D | usb_serial.h | 102 struct UsbInterface *ctrIface; 117 struct UsbInterface *itface; 131 struct UsbInterface *iface[USB_MAX_INTERFACES];
|
/drivers/peripheral/usb/hdi_service/include/ |
H A D | usbd.h | 100 struct UsbInterface *ctrIface; 105 struct UsbInterface *iface[USB_MAX_INTERFACES];
|
H A D | usbd_dispatcher.h | 74 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 D | usb_interface_pool.h | 54 struct UsbInterface interface;
|
/drivers/hdf_core/framework/test/unittest/model/usb/host/src/ |
H A D | usb_test.c | 26 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 D | usb_interface_pool.c | 1012 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 D | usb_ddk_service.cpp | 66 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 D | usbd_dispatcher.cpp | 98 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 D | usbhost_sdkapi_speed.c | 215 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex) in GetUsbInterfaceById()
|
/drivers/peripheral/usb/sample/host/src/ |
H A D | usbhost_sdkapi_speed.c | 204 static struct UsbInterface *GetUsbInterfaceById(const struct AcmDevice *acm, uint8_t interfaceIndex) in GetUsbInterfaceById()
|
/drivers/peripheral/usb/net/src/ |
H A D | cdc_ether.c | 47 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 D | usb_serial.c | 37 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()
|