Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_WIN/
DFreeRTOS_TCP_WIN_utest.c1053 xWindow.pxHeadSegment = malloc( sizeof( TCPSegment_t ) ); in test_lTCPWindowTxAdd_nothing_to_do()
1065 free( xWindow.pxHeadSegment ); in test_lTCPWindowTxAdd_nothing_to_do()
1076 xWindow.pxHeadSegment = NULL; in test_lTCPWindowTxAdd_null_txSegment()
1096 xWindow.pxHeadSegment = malloc( sizeof( TCPSegment_t ) ); in test_lTCPWindowTxAdd_true_outstanding_bits()
1097 xWindow.pxHeadSegment->lMaxLength = 300; in test_lTCPWindowTxAdd_true_outstanding_bits()
1098 xWindow.pxHeadSegment->lDataLength = xWindow.pxHeadSegment->lMaxLength - 3; in test_lTCPWindowTxAdd_true_outstanding_bits()
1099 xWindow.pxHeadSegment->u.bits.bOutstanding = pdTRUE_UNSIGNED; in test_lTCPWindowTxAdd_true_outstanding_bits()
1108 free( xWindow.pxHeadSegment ); in test_lTCPWindowTxAdd_true_outstanding_bits()
1120 xWindow.pxHeadSegment = malloc( sizeof( TCPSegment_t ) ); in test_lTCPWindowTxAdd_data_length_zero()
1121 xWindow.pxHeadSegment->lMaxLength = 300; in test_lTCPWindowTxAdd_data_length_zero()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_TCP_WIN.h129 …TCPSegment_t * pxHeadSegment; /**< points to a segment which … member
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_WIN.c1378 pxWindow->pxHeadSegment = NULL; in prvTCPWindowTxAdd_FrontSegment()
1424 TCPSegment_t * pxSegment = pxWindow->pxHeadSegment; in lTCPWindowTxAdd()
1469 pxWindow->pxHeadSegment = pxSegment; in lTCPWindowTxAdd()
1473 pxWindow->pxHeadSegment = NULL; in lTCPWindowTxAdd()
1761 if( pxWindow->pxHeadSegment == pxSegment ) in pxTCPWindowTx_GetTXQueue()
1763 pxWindow->pxHeadSegment = NULL; in pxTCPWindowTx_GetTXQueue()