Lines Matching refs:pxIterator
479 const ListItem_t * pxIterator; in xTCPWindowRxFind() local
491 for( pxIterator = listGET_NEXT( pxEnd ); in xTCPWindowRxFind()
492 pxIterator != pxEnd; in xTCPWindowRxFind()
493 pxIterator = listGET_NEXT( pxIterator ) ) in xTCPWindowRxFind()
495 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in xTCPWindowRxFind()
929 const ListItem_t * pxIterator; in xTCPWindowRxConfirm() local
947 for( pxIterator = listGET_NEXT( pxEnd ); in xTCPWindowRxConfirm()
948 pxIterator != pxEnd; in xTCPWindowRxConfirm()
949 pxIterator = listGET_NEXT( pxIterator ) ) in xTCPWindowRxConfirm()
951 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in xTCPWindowRxConfirm()
1943 const ListItem_t * pxIterator; in prvTCPWindowTxCheckAck() local
1973 pxIterator = listGET_NEXT( pxEnd ); in prvTCPWindowTxCheckAck()
1975 … while( ( pxIterator != pxEnd ) && ( xSequenceLessThan( ulSequenceNumber, ulLast ) != 0 ) ) in prvTCPWindowTxCheckAck()
1978 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in prvTCPWindowTxCheckAck()
1982 pxIterator = ( const ListItem_t * ) listGET_NEXT( pxIterator ); in prvTCPWindowTxCheckAck()
2092 const ListItem_t * pxIterator; in prvTCPWindowFastRetransmit() local
2105 pxIterator = listGET_NEXT( pxEnd ); in prvTCPWindowFastRetransmit()
2107 while( pxIterator != pxEnd ) in prvTCPWindowFastRetransmit()
2110 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxIterator ) ); in prvTCPWindowFastRetransmit()
2113 pxIterator = listGET_NEXT( pxIterator ); in prvTCPWindowFastRetransmit()