Searched refs:ulDataLength (Results 1 – 3 of 3) sorted by relevance
453 uint32_t ulDataLength; in test_ulTCPWindowTxAck_datalen_eq_zero() local459 ulDataLength = ulTCPWindowTxAck( &xWindow, in test_ulTCPWindowTxAck_datalen_eq_zero()461 TEST_ASSERT_EQUAL( 0, ulDataLength ); in test_ulTCPWindowTxAck_datalen_eq_zero()466 uint32_t ulDataLength; in test_ulTCPWindowTxAck_datalen_neq() local473 ulDataLength = ulTCPWindowTxAck( &xWindow, in test_ulTCPWindowTxAck_datalen_neq()475 TEST_ASSERT_EQUAL( 0, ulDataLength ); in test_ulTCPWindowTxAck_datalen_neq()480 uint32_t ulDataLength; in test_ulTCPWindowTxAck_nothing_to_send() local487 ulDataLength = ulTCPWindowTxAck( &xWindow, in test_ulTCPWindowTxAck_nothing_to_send()489 TEST_ASSERT_EQUAL( 0, ulDataLength ); in test_ulTCPWindowTxAck_nothing_to_send()494 uint32_t ulDataLength; in test_ulTCPWindowTxAck_seq_gt_current_plus_length() local[all …]
424 uint32_t ulDataLength = ( uint32_t ) pxSegment->lDataLength; in ulTCPWindowTxAck() local428 if( ulDataLength != 0U ) in ulTCPWindowTxAck()430 if( ulSequenceNumber < ( pxWindow->tx.ulCurrentSequenceNumber + ulDataLength ) ) in ulTCPWindowTxAck()437 ( unsigned ) ulDataLength ) ); in ulTCPWindowTxAck()441 ulDataLength = 0U; in ulTCPWindowTxAck()445 pxWindow->tx.ulCurrentSequenceNumber += ulDataLength; in ulTCPWindowTxAck()451 ( unsigned ) ulDataLength ) ); in ulTCPWindowTxAck()458 return ulDataLength; in ulTCPWindowTxAck()
1946 uint32_t ulDataLength; in prvTCPWindowTxCheckAck() local2001 ulDataLength = ( uint32_t ) pxSegment->lDataLength; in prvTCPWindowTxCheckAck()2005 …if( xSequenceGreaterThan( pxSegment->ulSequenceNumber + ( uint32_t ) ulDataLength, ulLast ) != pdF… in prvTCPWindowTxCheckAck()2021 … ( unsigned ) ( ulFirstSeq + ulDataLength ) ) ); in prvTCPWindowTxCheckAck()2034 ( ( pxSegment->ulSequenceNumber + ulDataLength ) == ulLast ) ) in prvTCPWindowTxCheckAck()2056 pxWindow->tx.ulCurrentSequenceNumber += ulDataLength; in prvTCPWindowTxCheckAck()2060 ulBytesConfirmed += ulDataLength; in prvTCPWindowTxCheckAck()2075 ulSequenceNumber += ulDataLength; in prvTCPWindowTxCheckAck()