/drivers/peripheral/usb/interfaces/ddk/host/ |
H A D | usb_ddk_interface.h | 294 * in {@link UsbSession}.
299 int32_t UsbInitHostSdk(struct UsbSession **session);
307 * {@link UsbSession}.
312 int32_t UsbExitHostSdk(const struct UsbSession *session);
318 * {@link UsbSession}.
328 struct UsbInterface *UsbClaimInterfaceUnforce(const struct UsbSession *session, uint8_t busNum,
335 * {@link UsbSession}.
345 struct UsbInterface *UsbClaimInterface(const struct UsbSession *session, uint8_t busNum,
352 * {@link UsbSession}.
362 struct UsbInterface *UsbManageInterface(const struct UsbSession *sessio [all...] |
H A D | usb_session.h | 53 struct UsbSession {
struct
|
H A D | usb_raw_api.h | 210 * {@link UsbSession}.
215 int32_t UsbRawInit(struct UsbSession **session);
223 * {@link UsbSession}.
228 int32_t UsbRawExit(const struct UsbSession *session);
234 * {@link UsbSession}.
241 UsbRawHandle *UsbRawOpenDevice(const struct UsbSession *session, uint8_t busNum, uint8_t usbAddr);
|
/drivers/peripheral/usb/test/unittest/mock/include/ |
H A D | mock_linux_adapter.h | 23 int32_t FuncAdapterInit(const UsbSession *session); 24 void FuncAdapterExit(const UsbSession *session); 25 UsbDeviceHandle *FuncAdapterOpenDevice(UsbSession *session, uint8_t busNum, uint8_t usbAddr);
|
/drivers/peripheral/usb/ddk/host/include/ |
H A D | usb_interface_pool.h | 60 struct UsbSession *session; 67 struct UsbSession *session; 121 int32_t UsbIfCreatInterfacePool(const struct UsbSession *session, uint8_t busNum, uint8_t devAddr,
|
H A D | usb_ddk_device.h | 33 struct UsbSession *session; 55 struct UsbSession *session;
|
H A D | usb_raw_api_library.h | 83 struct UsbSession *RawGetSession(const struct UsbSession *session); 84 int32_t RawInit(struct UsbSession **session); 85 int32_t RawExit(const struct UsbSession *session); 86 struct UsbDeviceHandle *RawOpenDevice(const struct UsbSession *session, uint8_t busNum, uint8_t usbAddr);
|
H A D | liteos_adapter.h | 93 int32_t (*init)(const struct UsbSession *session); 94 void (*exit)(const struct UsbSession *session); 95 struct UsbDeviceHandle *(*openDevice)(struct UsbSession *session, uint8_t busNum, uint8_t usbAddr);
|
H A D | linux_adapter.h | 123 int32_t (*init)(const struct UsbSession *session); 124 void (*exit)(const struct UsbSession *session); 125 struct UsbDeviceHandle *(*openDevice)(struct UsbSession *session, uint8_t busNum, uint8_t usbAddr);
|
/drivers/peripheral/usb/ddk/host/src/ |
H A D | usb_interface_pool.c | 192 struct UsbSession *session = NULL; in IfDestroyInterfacePool() 380 const struct UsbSession *session, struct UsbPoolQueryPara queryPara, bool refCountFlag) in IfFindInterfacePool() 750 static int32_t IfDestoryDevice(const struct UsbSession *session, const struct UsbInterfacePool *interfacePool, in IfDestoryDevice() 787 struct UsbDeviceHandle **devHandle, const struct UsbSession *realSession, uint8_t busNum, uint8_t usbAddr) in IfGetInterfacePool() 936 const struct UsbSession *session, uint8_t busNum, uint8_t devAddr, struct UsbInterfacePool **interfacePool) in UsbIfCreatInterfacePool() 972 int32_t UsbInitHostSdk(struct UsbSession **session) in UsbInitHostSdk() 977 int32_t UsbExitHostSdk(const struct UsbSession *session) in UsbExitHostSdk() 989 int32_t UsbGetDeviceMemMapFd(const struct UsbSession *session, uint8_t busNum, uint8_t usbAddr) in UsbGetDeviceMemMapFd() 992 struct UsbSession *realSession = RawGetSession(session); in UsbGetDeviceMemMapFd() 1013 const struct UsbSession *sessio in ClaimInterface() [all...] |
H A D | usb_raw_api.c | 22 int32_t UsbRawInit(struct UsbSession **session) in UsbRawInit() 27 int32_t UsbRawExit(const struct UsbSession *session) in UsbRawExit() 32 UsbRawHandle *UsbRawOpenDevice(const struct UsbSession *session, uint8_t busNum, uint8_t usbAddr) in UsbRawOpenDevice()
|
/drivers/peripheral/usb/test/unittest/mock/src/ |
H A D | mock_linux_adapter.cpp | 63 int32_t FuncAdapterInit(const UsbSession *session) in FuncAdapterInit() 70 void FuncAdapterExit(const UsbSession *session) in FuncAdapterExit() 91 static UsbDeviceHandle *OsGetDeviceHandle(UsbSession *session, uint8_t busNum, uint8_t usbAddr) in OsGetDeviceHandle() 122 static UsbDevice *OsAllocDevice(UsbSession *session, UsbDeviceHandle *handle) in OsAllocDevice() 220 UsbDeviceHandle *FuncAdapterOpenDevice(UsbSession *session, uint8_t busNum, uint8_t usbAddr) in FuncAdapterOpenDevice()
|
/drivers/peripheral/usb/sample/host/include/ |
H A D | usbhost_sdkapi_speed.h | 116 struct UsbSession *session;
|
H A D | usbhost_sdkraw_speed.h | 117 struct UsbSession *session;
|
/drivers/peripheral/usb/sample/host/liteos_test/include/ |
H A D | usbhost_sdkapi_speed.h | 113 struct UsbSession *session;
|
H A D | usbhost_nosdk_speed.h | 110 struct UsbSession *session;
|
H A D | usbhost_sdkraw_speed.h | 112 struct UsbSession *session;
|
/drivers/peripheral/usb/serial/include/ |
H A D | usb_serial_rawapi.h | 126 struct UsbSession *session;
|
H A D | usb_serial.h | 120 struct UsbSession *session;
|
/drivers/peripheral/usb/test/unittest/host_sdk/ |
H A D | usb_host_sdk_if_test.h | 103 struct UsbSession *session;
|
H A D | usb_raw_sdk_if_test.h | 102 struct UsbSession *session;
|
/drivers/peripheral/usb/net/include/ |
H A D | cdc_ether.h | 104 struct UsbSession *session;
|
H A D | usb_net_host.h | 84 struct UsbSession *session;
|
/drivers/peripheral/usb/sample/host/liteos_test/src/ |
H A D | usbhost_sdkraw_speed.c | 598 static int32_t UsbSpeedDdkInit(const struct UsbSession *session) in UsbSpeedDdkInit() 603 ret = UsbRawInit((struct UsbSession **)&session); in UsbSpeedDdkInit() 650 static void UsbSpeedDdkExit(const struct UsbSession *session) in UsbSpeedDdkExit() 674 struct UsbSession *session = NULL; in UsbSerialSpeed()
|
/drivers/peripheral/usb/hdi_service/include/ |
H A D | usbd.h | 146 struct UsbSession *session;
|