Lines Matching refs:dataInEp
180 acm->dataInEp = OsalMemAlloc(sizeof(struct UsbEndpoint));
181 if (acm->dataInEp == NULL) {
182 HDF_LOGE("%{public}s:%{public}d allocate dataInEp failed", __func__, __LINE__);
185 acm->dataInEp->addr = endPoint->endpointDescriptor.bEndpointAddress;
186 acm->dataInEp->interval = endPoint->endpointDescriptor.bInterval;
187 acm->dataInEp->maxPacketSize = endPoint->endpointDescriptor.wMaxPacketSize;
274 if (acm->dataInEp) {
275 OsalMemFree(acm->dataInEp);
276 acm->dataInEp = NULL;
858 g_syncRequest = UsbRawAllocRequest(acm->devHandle, 0, acm->dataInEp->maxPacketSize);
866 requestData.endPoint = acm->dataInEp->addr;
868 requestData.length = acm->dataInEp->maxPacketSize;
1156 uint32_t size = acm->dataInEp->maxPacketSize;
1165 reqData.endPoint = acm->dataInEp->addr;