Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.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-v4.0.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_IP_IPv4.c305 pxSocket->u.xTCP.ulWindowSize = ( uint32_t ) usWindow; in xProcessReceivedTCPPacket_IPV4()
312 pxSocket->u.xTCP.ulWindowSize = in xProcessReceivedTCPPacket_IPV4()
313 … ( pxSocket->u.xTCP.ulWindowSize << pxSocket->u.xTCP.ucPeerWinScaleFactor ); in xProcessReceivedTCPPacket_IPV4()
DFreeRTOS_TCP_IP_IPv6.c298 pxSocket->u.xTCP.ulWindowSize = ( uint32_t ) usWindow; in xProcessReceivedTCPPacket_IPV6()
305 pxSocket->u.xTCP.ulWindowSize = in xProcessReceivedTCPPacket_IPV6()
306 … ( pxSocket->u.xTCP.ulWindowSize << pxSocket->u.xTCP.ucPeerWinScaleFactor ); in xProcessReceivedTCPPacket_IPV6()
DFreeRTOS_TCP_WIN.c187 uint32_t ulWindowSize );
1521 uint32_t ulWindowSize ) in prvTCPWindowTxHasSpace() argument
1551 ulNettSize = ulWindowSize - FreeRTOS_min_uint32( ulWindowSize, ulTxOutstanding ); in prvTCPWindowTxHasSpace()
1592 uint32_t ulWindowSize, in xTCPWindowTxHasData() argument
1645 else if( prvTCPWindowTxHasSpace( pxWindow, ulWindowSize ) == pdFALSE ) in xTCPWindowTxHasData()
1733 uint32_t ulWindowSize ) in pxTCPWindowTx_GetTXQueue() argument
1748 else if( prvTCPWindowTxHasSpace( pxWindow, ulWindowSize ) == pdFALSE ) in pxTCPWindowTx_GetTXQueue()
1778 ( unsigned ) ulWindowSize ) ); in pxTCPWindowTx_GetTXQueue()
1801 uint32_t ulWindowSize, in ulTCPWindowTxGet() argument
1825 ( unsigned ) ulWindowSize ) ); in ulTCPWindowTxGet()
[all …]
DFreeRTOS_TCP_State_Handling.c521 pxSocket->u.xTCP.ulWindowSize = ( uint32_t ) usWindow; in prvHandleEstablished()
524 pxSocket->u.xTCP.ulWindowSize = in prvHandleEstablished()
525 ( pxSocket->u.xTCP.ulWindowSize << pxSocket->u.xTCP.ucPeerWinScaleFactor ); in prvHandleEstablished()
DFreeRTOS_TCP_IP.c598 …t = xTCPWindowTxHasData( &pxSocket->u.xTCP.xTCPWindow, pxSocket->u.xTCP.ulWindowSize, &ulDelayMs ); in prvTCPNextTimeout()
DFreeRTOS_TCP_Transmission.c851 …lDataLen = ( int32_t ) ulTCPWindowTxGet( pxTCPWindow, pxSocket->u.xTCP.ulWindowSize, &lStreamPos ); in prvTCPPrepareSend()
/FreeRTOS-Plus-TCP-v4.0.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-v4.0.0/source/include/
DFreeRTOS_TCP_WIN.h203 uint32_t ulWindowSize,
214 uint32_t ulWindowSize,
DFreeRTOS_IP_Private.h631 uint32_t ulWindowSize; /**< Current Window size advertised by peer */ member