Lines Matching refs:ioData
1078 static int32_t UsbFnAdapterPipeIo(int32_t ep, struct IoData *ioData)
1081 if (ep <= 0 || ioData == NULL) {
1086 if (ioData->read) {
1087 ret = ioctl(ep, FUNCTIONFS_ENDPOINT_READ, ioData);
1089 ret = ioctl(ep, FUNCTIONFS_ENDPOINT_WRITE, ioData);
1099 static int32_t UsbFnAdapterCancelIo(int32_t ep, const struct IoData * const ioData)
1101 if (ep <= 0 || ioData == NULL) {
1104 return ioctl(ep, FUNCTIONFS_ENDPOINT_RW_CANCEL, ioData);
1209 static int32_t UsbFnAdapterRequestGetStatus(int32_t ep, const struct IoData *ioData)
1211 if (ep <= 0 || ioData == NULL) {
1214 return ioctl(ep, FUNCTIONFS_ENDPOINT_GET_REQ_STATUS, ioData);