Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Sockets.c3670 BaseType_t xBytesLeft; in FreeRTOS_send() local
3687 xBytesLeft = ( BaseType_t ) uxDataLength; in FreeRTOS_send()
3699 if( xByteCount > xBytesLeft ) in FreeRTOS_send()
3701 xByteCount = xBytesLeft; in FreeRTOS_send()
3706 …if( ( pxSocket->u.xTCP.bits.bCloseAfterSend != pdFALSE_UNSIGNED ) && ( xByteCount == xBytesLeft ) ) in FreeRTOS_send()
3752 xBytesLeft -= xByteCount; in FreeRTOS_send()
3754 if( ( xBytesLeft == 0 ) || ( pvBuffer == NULL ) ) in FreeRTOS_send()
3818 xByteCount = ( ( BaseType_t ) uxDataLength ) - xBytesLeft; in FreeRTOS_send()