Searched refs:pxSegment (Results 1 – 2 of 2) sorted by relevance
152 static void vTCPWindowFree( TCPSegment_t * pxSegment );481 TCPSegment_t * pxSegment, * pxReturn = NULL; in xTCPWindowRxFind() local495 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in xTCPWindowRxFind()497 if( pxSegment->ulSequenceNumber == ulSequenceNumber ) in xTCPWindowRxFind()499 pxReturn = pxSegment; in xTCPWindowRxFind()526 TCPSegment_t * pxSegment; in xTCPWindowNew() local536 pxSegment = NULL; in xTCPWindowNew()543 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxItem ) ); in xTCPWindowNew()546 configASSERT( pxSegment != NULL ); in xTCPWindowNew()562 vTCPTimerSet( &pxSegment->xTransmitTimer ); in xTCPWindowNew()[all …]
190 TCPSegment_t * pxSegment = &( pxWindow->xTxSegment ); in lTCPWindowTxAdd() local200 if( pxSegment->lDataLength > 0 ) in lTCPWindowTxAdd()206 if( ulLength > ( uint32_t ) pxSegment->lMaxLength ) in lTCPWindowTxAdd()210 …owTxAdd: can only store %u / %d bytes\n", ( unsigned ) ulLength, ( int ) pxSegment->lMaxLength ) ); in lTCPWindowTxAdd()213 ulLength = ( uint32_t ) pxSegment->lMaxLength; in lTCPWindowTxAdd()225 pxSegment->ulSequenceNumber = pxWindow->ulNextTxSequenceNumber; in lTCPWindowTxAdd()226 pxSegment->lDataLength = ( int32_t ) ulLength; in lTCPWindowTxAdd()227 pxSegment->lStreamPos = lPosition; in lTCPWindowTxAdd()228 pxSegment->u.ulFlags = 0U; in lTCPWindowTxAdd()229 vTCPTimerSet( &( pxSegment->xTransmitTimer ) ); in lTCPWindowTxAdd()[all …]