Home
last modified time | relevance | path

Searched refs:ulWindowSize (Results 1 – 9 of 9) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Tiny_TCP/
DFreeRTOS_Tiny_TCP_utest.c254 uint32_t ulWindowSize = 20; in test_ulTCPWindowTxGet_length_eq_zero() local
261 ulWindowSize, in test_ulTCPWindowTxGet_length_eq_zero()
271 uint32_t ulWindowSize = 20; in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_false() local
280 ulWindowSize, in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_false()
290 uint32_t ulWindowSize = 20; in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_true() local
305 ulWindowSize, in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_true()
315 uint32_t ulWindowSize = 20; in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_true_timer_ne_expired() local
328 ulWindowSize, in test_ulTCPWindowTxGet_length_ne_zero_bit_outstanding_eq_true_timer_ne_expired()
362 uint32_t ulWindowSize = 20; in test_xTCPWindowTxHasData() local
369 ulWindowSize, in test_xTCPWindowTxHasData()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Tiny_TCP.c254 uint32_t ulWindowSize, in ulTCPWindowTxGet() argument
264 ( void ) ulWindowSize; in ulTCPWindowTxGet()
324 uint32_t ulWindowSize );
335 uint32_t ulWindowSize ) in prvTCPWindowTxHasSpace() argument
339 if( ulWindowSize >= pxWindow->usMSSInit ) in prvTCPWindowTxHasSpace()
365 uint32_t ulWindowSize, in xTCPWindowTxHasData() argument
394 else if( prvTCPWindowTxHasSpace( pxWindow, ulWindowSize ) == pdFALSE ) in xTCPWindowTxHasData()
DFreeRTOS_TCP_WIN.c185 uint32_t ulWindowSize );
1517 uint32_t ulWindowSize ) in prvTCPWindowTxHasSpace() argument
1547 ulNettSize = ulWindowSize - FreeRTOS_min_uint32( ulWindowSize, ulTxOutstanding ); in prvTCPWindowTxHasSpace()
1588 uint32_t ulWindowSize, in xTCPWindowTxHasData() argument
1641 else if( prvTCPWindowTxHasSpace( pxWindow, ulWindowSize ) == pdFALSE ) in xTCPWindowTxHasData()
1729 uint32_t ulWindowSize ) in pxTCPWindowTx_GetTXQueue() argument
1744 else if( prvTCPWindowTxHasSpace( pxWindow, ulWindowSize ) == pdFALSE ) in pxTCPWindowTx_GetTXQueue()
1774 ( unsigned ) ulWindowSize ) ); in pxTCPWindowTx_GetTXQueue()
1797 uint32_t ulWindowSize, in ulTCPWindowTxGet() argument
1821 ( unsigned ) ulWindowSize ) ); in ulTCPWindowTxGet()
[all …]
DFreeRTOS_TCP_IP.c568 …t = xTCPWindowTxHasData( &pxSocket->u.xTCP.xTCPWindow, pxSocket->u.xTCP.ulWindowSize, &ulDelayMs ); in prvTCPNextTimeout()
820 pxSocket->u.xTCP.ulWindowSize = ( uint32_t ) usWindow; in xProcessReceivedTCPPacket()
827 pxSocket->u.xTCP.ulWindowSize = in xProcessReceivedTCPPacket()
828 … ( pxSocket->u.xTCP.ulWindowSize << pxSocket->u.xTCP.ucPeerWinScaleFactor ); in xProcessReceivedTCPPacket()
DFreeRTOS_TCP_State_Handling.c522 pxSocket->u.xTCP.ulWindowSize = ( uint32_t ) usWindow; in prvHandleEstablished()
525 pxSocket->u.xTCP.ulWindowSize = in prvHandleEstablished()
526 ( pxSocket->u.xTCP.ulWindowSize << pxSocket->u.xTCP.ucPeerWinScaleFactor ); in prvHandleEstablished()
DFreeRTOS_TCP_Transmission.c993 …lDataLen = ( int32_t ) ulTCPWindowTxGet( pxTCPWindow, pxSocket->u.xTCP.ulWindowSize, &lStreamPos ); in prvTCPPrepareSend()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_WIN/
DFreeRTOS_TCP_WIN_utest.c1364 uint32_t ulWindowSize = 34; in test_xTCPWindowTxHasData_empty_list() local
1369 xReturn = xTCPWindowTxHasData( &xWindow, ulWindowSize, &ulDelay ); in test_xTCPWindowTxHasData_empty_list()
1379 uint32_t ulWindowSize = 34; in test_xTCPWindowTxHasData_null_segment() local
1388 xReturn = xTCPWindowTxHasData( &xWindow, ulWindowSize, &ulDelay ); in test_xTCPWindowTxHasData_null_segment()
1400 uint32_t ulWindowSize = 34; in test_xTCPWindowTxHasData_non_null_segment_maxage_lt_age() local
1415 xReturn = xTCPWindowTxHasData( &xWindow, ulWindowSize, &ulDelay ); in test_xTCPWindowTxHasData_non_null_segment_maxage_lt_age()
1427 uint32_t ulWindowSize = 34; in test_xTCPWindowTxHasData_non_null_segment_maxAge_gt_age() local
1442 xReturn = xTCPWindowTxHasData( &xWindow, ulWindowSize, &ulDelay ); in test_xTCPWindowTxHasData_non_null_segment_maxAge_gt_age()
1454 uint32_t ulWindowSize = 34; in test_xTCPWindowTxHasData_no_space() local
1468 xReturn = xTCPWindowTxHasData( &xWindow, ulWindowSize, &ulDelay ); in test_xTCPWindowTxHasData_no_space()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_TCP_WIN.h203 uint32_t ulWindowSize,
214 uint32_t ulWindowSize,
DFreeRTOS_IP_Private.h613 uint32_t ulWindowSize; /**< Current Window size advertised by peer */ member