Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c2784 TEST_ASSERT_EQUAL( 4, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream()
2809 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream1()
2827 xSocket.u.xTCP.uxLittleSpace = 3; in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2837 TEST_ASSERT_EQUAL( 3, xSocket.u.xTCP.uxLittleSpace ); in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2857 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_StreamCannotBeAllocated()
2889 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesAdded()
2924 xSocket.u.xTCP.uxLittleSpace = 3; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesNotAdded()
2959 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_FrontSpaceLessThanLowMark()
3001 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_LowWaterTrue()
3034 xSocket.u.xTCP.uxLittleSpace = 120; in test_lTCPAddRxdata_HasValidHandler()
[all …]
DFreeRTOS_Sockets_GenericAPI_utest.c1632 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues1()
1633 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues1()
1656 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues2()
1657 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace - 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues2()
1680 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1681 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1705 vOptionValue.uxLittleSpace = 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1706 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1712 TEST_ASSERT_EQUAL( vOptionValue.uxLittleSpace, xSocket.u.xTCP.uxLittleSpace ); in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_Sockets.h293 size_t uxLittleSpace; /**< Send a STOP when buffer space drops below X bytes */ member
DFreeRTOS_IP_Private.h608 … size_t uxLittleSpace; /**< The value deemed as low amount of space. */ member
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_State_Handling.c960 pxNewSocket->u.xTCP.uxLittleSpace = pxSocket->u.xTCP.uxLittleSpace; in prvTCPSocketCopy()
DFreeRTOS_Sockets.c2561 else if( ( pxLowHighWater->uxLittleSpace >= pxLowHighWater->uxEnoughSpace ) || in prvSetOptionLowHighWater()
2570 pxSocket->u.xTCP.uxLittleSpace = pxLowHighWater->uxLittleSpace; in prvSetOptionLowHighWater()
5022 if( pxSocket->u.xTCP.uxLittleSpace == 0U ) in prvTCPCreateStream()
5024 …pxSocket->u.xTCP.uxLittleSpace = ( uxLittlePerc * pxSocket->u.xTCP.uxRxStreamSize ) / sock100_PERC… in prvTCPCreateStream()
5148 if( uxFrontSpace <= pxSocket->u.xTCP.uxLittleSpace ) in vTCPAddRxdata_Stored()
DFreeRTOS_TCP_Transmission.c458 ( unsigned ) pxSocket->u.xTCP.uxLittleSpace, in prvTCPCreateWindow()