Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_Sockets.c4433 BaseType_t xBytesLeft = ( BaseType_t ) uxDataLength; in prvTCPSendLoop() local
4442 while( xBytesLeft > 0 ) in prvTCPSendLoop()
4450 if( xByteCount > xBytesLeft ) in prvTCPSendLoop()
4452 xByteCount = xBytesLeft; in prvTCPSendLoop()
4456 ( xByteCount == xBytesLeft ) ) in prvTCPSendLoop()
4496 xBytesLeft -= xByteCount; in prvTCPSendLoop()
4499 if( ( xBytesLeft == 0 ) && ( pvBuffer == NULL ) ) in prvTCPSendLoop()