HomeSort by relevance Sort by last modified time
    Searched refs:RcvdBytes (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
SockImpl.h 68 @param RcvdBytes The maximum length of the data can be copied.
76 IN UINT32 RcvdBytes,
SockImpl.c 152 @param RcvdBytes The maximum length of the data can be copied.
160 IN UINT32 RcvdBytes,
174 ASSERT (RxData->DataLength >= RcvdBytes);
176 RxData->DataLength = RcvdBytes;
179 for (Index = 0; (Index < RxData->FragmentCount) && (RcvdBytes > 0); Index++) {
182 CopyBytes = MIN ((UINT32) (Fragment->FragmentLength), RcvdBytes);
192 RcvdBytes -= CopyBytes;
434 UINT32 RcvdBytes;
441 RcvdBytes = (Sock->RcvBuffer.DataQueue)->BufSize;
443 ASSERT (RcvdBytes > 0);
    [all...]
SockInterface.c 632 UINT32 RcvdBytes;
677 RcvdBytes = GET_RCV_DATASIZE (Sock);
693 if (SOCK_IS_NO_MORE_DATA (Sock) && (0 == RcvdBytes)) {
699 if (RcvdBytes != 0) {
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockImpl.c 187 @param[in] RcvdBytes The maximum length of the data can be copied.
195 IN UINT32 RcvdBytes,
209 ASSERT (RxData->DataLength >= RcvdBytes);
211 RxData->DataLength = RcvdBytes;
217 for (Index = 0; (Index < RxData->FragmentCount) && (RcvdBytes > 0); Index++) {
220 CopyBytes = MIN ((UINT32) (Fragment->FragmentLength), RcvdBytes);
230 RcvdBytes -= CopyBytes;
545 UINT32 RcvdBytes;
552 RcvdBytes = (Sock->RcvBuffer.DataQueue)->BufSize;
554 ASSERT (RcvdBytes > 0);
    [all...]
SockInterface.c 656 UINT32 RcvdBytes;
704 RcvdBytes = GET_RCV_DATASIZE (Sock);
720 if (SOCK_IS_NO_MORE_DATA (Sock) && (0 == RcvdBytes)) {
726 if (RcvdBytes != 0) {

Completed in 323 milliseconds