Home
last modified time | relevance | path

Searched refs:wMaxPacketSizeSend (Results 1 – 7 of 7) sorted by relevance

/developtools/hdc/hdc_rust/src/cffi/
Dusb_types.h36 uint16_t wMaxPacketSizeSend; member
/developtools/hdc/src/common/
Dusb.h38 int GetSafeUsbBlockSize(uint16_t wMaxPacketSizeSend);
Dusb.cpp97 if (childRet > 0 && (childRet % hSession->hUSB->wMaxPacketSizeSend == 0)) { in SendUSBBlock()
Ddefine_plus.h345 uint16_t wMaxPacketSizeSend; member
Dsession.cpp374 hSession->hUSB->wMaxPacketSizeSend = MAX_PACKET_SIZE_HISPEED; in MallocSessionByConnectType()
/developtools/hdc/src/daemon/
Ddaemon_usb.cpp191 hUSB->wMaxPacketSizeSend = GetMaxPacketSize(hUSB->bulkIn); in ConnectEPPoint()
524 if (bytesIOBytes > hUSB->wMaxPacketSizeSend && bytesIOBytes != thisClass->saveNextReadSize) { in OnUSBRead()
570 …int nextReadSize = childRet == 0 ? hUSB->wMaxPacketSizeSend : std::min(childRet, Base::GetUsbffsBu… in OnUSBRead()
642 thisClass->LoopUSBRead(hUSB, hUSB->wMaxPacketSizeSend); in WatchEPTimer()
/developtools/hdc/src/host/
Dhost_usb.cpp422 hUSB->wMaxPacketSizeSend = ep_desc->wMaxPacketSize; in CheckUsbEndpoint()
587 nextReadSize = (childRet < hUSB->wMaxPacketSizeSend ? in BeginUsbRead()
588 hUSB->wMaxPacketSizeSend : std::min(childRet, bulkInSize)); in BeginUsbRead()