Home
last modified time | relevance | path

Searched refs:uxLittleSpace (Results 1 – 7 of 7) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c2615 TEST_ASSERT_EQUAL( 4, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream()
2640 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream1()
2658 xSocket.u.xTCP.uxLittleSpace = 3; in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2668 TEST_ASSERT_EQUAL( 3, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2688 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_StreamCannotBeAllocated()
2720 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesAdded()
2755 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesNotAdded()
2790 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_FrontSpaceLessThanLowMark()
2832 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_LowWaterTrue()
2865 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_HasValidHandler()
[all …]
DFreeRTOS_Sockets_GenericAPI_utest.c1661 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues1()
1662 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues1()
1685 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues2()
1686 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace - 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues2()
1709 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1710 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1734 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1735 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1741 TEST_ASSERT_EQUAL( vOptionValue.uxLittleSpace, xSocket.u.xTCP.uxLittleSpace ); in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_Sockets.h283 size_t uxLittleSpace; /**< Send a STOP when buffer space drops below X bytes */ member
DFreeRTOS_IP_Private.h590 … size_t uxLittleSpace; /**< The value deemed as low amount of space. */ member
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_TCP_State_Handling.c1049 pxNewSocket->u.xTCP.uxLittleSpace = pxSocket->u.xTCP.uxLittleSpace; in prvTCPSocketCopy()
DFreeRTOS_Sockets.c1992 if( ( pxLowHighWater->uxLittleSpace >= pxLowHighWater->uxEnoughSpace ) || in FreeRTOS_setsockopt()
2001 pxSocket->u.xTCP.uxLittleSpace = pxLowHighWater->uxLittleSpace; in FreeRTOS_setsockopt()
4215 if( pxSocket->u.xTCP.uxLittleSpace == 0U ) in prvTCPCreateStream()
4217 …pxSocket->u.xTCP.uxLittleSpace = ( uxLittlePerc * pxSocket->u.xTCP.uxRxStreamSize ) / sock100_PERC… in prvTCPCreateStream()
4391 if( uxFrontSpace <= pxSocket->u.xTCP.uxLittleSpace ) in lTCPAddRxdata()
DFreeRTOS_TCP_Transmission.c571 ( unsigned ) pxSocket->u.xTCP.uxLittleSpace, in prvTCPCreateWindow()