Home | History | Annotate | Download | only in TcpDxe

Lines Matching refs:DataQueue

33   NetbufList = &(Sockbuf->DataQueue->BufList);

60 NetbufList = &(Sockbuf->DataQueue->BufList);
223 Sock->RcvBuffer.DataQueue,
346 NetbufQueTrim (Sock->RcvBuffer.DataQueue, TokenRcvdBytes);
397 NetbufQueAppend (Sock->SndBuffer.DataQueue, SndData);
550 ASSERT (Sock->RcvBuffer.DataQueue != NULL);
552 RcvdBytes = (Sock->RcvBuffer.DataQueue)->BufSize;
701 Sock->SndBuffer.DataQueue = NetbufQueAlloc ();
702 if (NULL == Sock->SndBuffer.DataQueue) {
711 Sock->RcvBuffer.DataQueue = NetbufQueAlloc ();
712 if (NULL == Sock->RcvBuffer.DataQueue) {
807 if (NULL != Sock->SndBuffer.DataQueue) {
808 NetbufQueFree (Sock->SndBuffer.DataQueue);
811 if (NULL != Sock->RcvBuffer.DataQueue) {
812 NetbufQueFree (Sock->RcvBuffer.DataQueue);
855 NetbufQueFree (Sock->RcvBuffer.DataQueue);
856 NetbufQueFree (Sock->SndBuffer.DataQueue);
947 NetbufQueFlush (Sock->SndBuffer.DataQueue);
948 NetbufQueFlush (Sock->RcvBuffer.DataQueue);
1126 ASSERT (Count <= (Sock->SndBuffer.DataQueue)->BufSize);
1128 NetbufQueTrim (Sock->SndBuffer.DataQueue, Count);
1186 Sock->SndBuffer.DataQueue,
1211 ASSERT ((Sock != NULL) && (Sock->RcvBuffer.DataQueue != NULL) &&
1218 NetbufQueAppend (Sock->RcvBuffer.DataQueue, NetBuffer);
1250 BufferCC = (SockBuffer->DataQueue)->BufSize;