/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Tiny_TCP/ |
D | FreeRTOS_Tiny_TCP_utest.c | 254 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/ |
D | FreeRTOS_Tiny_TCP.c | 254 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()
|
D | FreeRTOS_TCP_IP_IPv4.c | 305 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()
|
D | FreeRTOS_TCP_IP_IPv6.c | 298 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()
|
D | FreeRTOS_TCP_WIN.c | 187 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 …]
|
D | FreeRTOS_TCP_State_Handling.c | 521 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()
|
D | FreeRTOS_TCP_IP.c | 598 …t = xTCPWindowTxHasData( &pxSocket->u.xTCP.xTCPWindow, pxSocket->u.xTCP.ulWindowSize, &ulDelayMs ); in prvTCPNextTimeout()
|
D | FreeRTOS_TCP_Transmission.c | 851 …lDataLen = ( int32_t ) ulTCPWindowTxGet( pxTCPWindow, pxSocket->u.xTCP.ulWindowSize, &lStreamPos ); in prvTCPPrepareSend()
|
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_WIN/ |
D | FreeRTOS_TCP_WIN_utest.c | 1364 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/ |
D | FreeRTOS_TCP_WIN.h | 203 uint32_t ulWindowSize, 214 uint32_t ulWindowSize,
|
D | FreeRTOS_IP_Private.h | 631 uint32_t ulWindowSize; /**< Current Window size advertised by peer */ member
|