Searched refs:SndBuffer (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DSocket.h255 #define SET_SND_BUFFSIZE(Sock, Size) ((Sock)->SndBuffer.HighWater = (Size))
265 #define GET_SND_BUFFSIZE(Sock) ((Sock)->SndBuffer.HighWater)
275 #define GET_SND_DATASIZE(Sock) (((Sock)->SndBuffer.DataQueue)->BufSize)
306 ((SockBufFirst (&((Sock)->SndBuffer)))->TotalSize)
645 SOCK_BUFFER SndBuffer; ///< Send buffer of application's data member in struct:_SOCKET
H A DSockImpl.c267 // and insert it into Sock->SndBuffer
285 NetbufQueAppend (Sock->SndBuffer.DataQueue, SndData);
493 while ((FreeSpace >= Sock->SndBuffer.LowWater) &&
594 Sock->SndBuffer.DataQueue = NetbufQueAlloc ();
595 if (NULL == Sock->SndBuffer.DataQueue) {
597 " SndBuffer for new socket\n"));
615 Sock->SndBuffer.HighWater = SockInitData->SndBufferSize;
625 Sock->SndBuffer.LowWater = SOCK_BUFF_LOW_WATER;
695 if (NULL != Sock->SndBuffer.DataQueue) {
696 NetbufQueFree (Sock->SndBuffer
[all...]
H A DSockInterface.c560 if ((FreeSpace < Sock->SndBuffer.LowWater) || !SOCK_IS_CONNECTED (Sock)) {
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DSockImpl.c261 while ((FreeSpace >= Sock->SndBuffer.LowWater) && !IsListEmpty (&Sock->SndTokenList)) {
377 // and insert it into Sock->SndBuffer
397 NetbufQueAppend (Sock->SndBuffer.DataQueue, SndData);
638 Sock->SndBuffer.DataQueue = NetbufQueAlloc ();
639 if (NULL == Sock->SndBuffer.DataQueue) {
642 "SockCreate: No resource to allocate SndBuffer for new socket\n")
663 Sock->SndBuffer.HighWater = SockInitData->SndBufferSize;
673 Sock->SndBuffer.LowWater = SOCK_BUFF_LOW_WATER;
744 if (NULL != Sock->SndBuffer.DataQueue) {
745 NetbufQueFree (Sock->SndBuffer
[all...]
H A DSocket.h270 #define SET_SND_BUFFSIZE(Sock, Size) ((Sock)->SndBuffer.HighWater = (Size))
280 #define GET_SND_BUFFSIZE(Sock) ((Sock)->SndBuffer.HighWater)
290 #define GET_SND_DATASIZE(Sock) (((Sock)->SndBuffer.DataQueue)->BufSize)
477 SOCK_BUFFER SndBuffer; ///< Send buffer of application's data member in struct:_TCP_SOCKET
H A DSockInterface.c579 if ((FreeSpace < Sock->SndBuffer.LowWater) || !SOCK_IS_CONNECTED (Sock)) {

Completed in 41 milliseconds