Lines Matching refs:pxItem
527 ListItem_t * pxItem; in xTCPWindowNew() local
542 pxItem = ( ListItem_t * ) listGET_HEAD_ENTRY( &xSegmentList ); in xTCPWindowNew()
543 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxItem ) ); in xTCPWindowNew()
545 configASSERT( pxItem != NULL ); in xTCPWindowNew()
549 ( void ) uxListRemove( pxItem ); in xTCPWindowNew()
554 vListInsertFifo( &pxWindow->xRxSegments, pxItem ); in xTCPWindowNew()
558 vListInsertFifo( &pxWindow->xTxSegments, pxItem ); in xTCPWindowNew()
641 ListItem_t * pxItem; in xTCPWindowGetHead() local
650 pxItem = ( ListItem_t * ) listGET_HEAD_ENTRY( pxList ); in xTCPWindowGetHead()
651 pxSegment = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxItem ) ); in xTCPWindowGetHead()
653 ( void ) uxListRemove( pxItem ); in xTCPWindowGetHead()
672 const ListItem_t * pxItem; in xTCPWindowPeekHead() local
682 pxItem = ( ListItem_t * ) listGET_HEAD_ENTRY( pxList ); in xTCPWindowPeekHead()
683 pxReturn = ( ( TCPSegment_t * ) listGET_LIST_ITEM_OWNER( pxItem ) ); in xTCPWindowPeekHead()