Home
last modified time | relevance | path

Searched refs:uxEnoughSpace (Results 1 – 8 of 8) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c2616 TEST_ASSERT_EQUAL( 16, xSocket.u.xTCP.uxEnoughSpace ); in test_prvTCPCreateStream()
2641 TEST_ASSERT_EQUAL( 0, xSocket.u.xTCP.uxEnoughSpace ); in test_prvTCPCreateStream1()
2659 xSocket.u.xTCP.uxEnoughSpace = 17; in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2669 TEST_ASSERT_EQUAL( 17, xSocket.u.xTCP.uxEnoughSpace ); in test_prvTCPCreateStream_LowAndHighFieldsDefined()
2689 xSocket.u.xTCP.uxEnoughSpace = 17; in test_lTCPAddRxdata_StreamCannotBeAllocated()
2721 xSocket.u.xTCP.uxEnoughSpace = 17; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesAdded()
2756 xSocket.u.xTCP.uxEnoughSpace = 17; in test_lTCPAddRxdata_SteamCreationSuccessful_AllBytesNotAdded()
2791 xSocket.u.xTCP.uxEnoughSpace = 200; in test_lTCPAddRxdata_FrontSpaceLessThanLowMark()
2833 xSocket.u.xTCP.uxEnoughSpace = 200; in test_lTCPAddRxdata_LowWaterTrue()
2866 xSocket.u.xTCP.uxEnoughSpace = 200; in test_lTCPAddRxdata_HasValidHandler()
[all …]
DFreeRTOS_Sockets_GenericAPI_utest.c1662 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues1()
1686 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace - 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues2()
1710 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1711 xSocket.u.xTCP.uxRxStreamSize = vOptionValue.uxEnoughSpace - 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterInvalidValues3()
1735 vOptionValue.uxEnoughSpace = vOptionValue.uxLittleSpace + 0x123; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1736 xSocket.u.xTCP.uxRxStreamSize = vOptionValue.uxEnoughSpace + 0x12; in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
1742 TEST_ASSERT_EQUAL( vOptionValue.uxEnoughSpace, xSocket.u.xTCP.uxEnoughSpace ); in test_FreeRTOS_setsockopt_SetLowHighWaterHappyPath()
DFreeRTOS_Sockets_TCP_API_utest.c647 xSocket.u.xTCP.uxEnoughSpace = 13; in test_FreeRTOS_recv_LowWaterReached2()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_Sockets.h284 size_t uxEnoughSpace; /**< Send a GO when buffer space grows above X bytes */ member
DFreeRTOS_IP_Private.h591 size_t uxEnoughSpace; /**< The value deemed as enough space. */ member
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Sockets.c1992 if( ( pxLowHighWater->uxLittleSpace >= pxLowHighWater->uxEnoughSpace ) || in FreeRTOS_setsockopt()
1993 ( pxLowHighWater->uxEnoughSpace > pxSocket->u.xTCP.uxRxStreamSize ) ) in FreeRTOS_setsockopt()
2003 pxSocket->u.xTCP.uxEnoughSpace = pxLowHighWater->uxEnoughSpace; in FreeRTOS_setsockopt()
3506 if( uxFrontSpace >= pxSocket->u.xTCP.uxEnoughSpace ) in FreeRTOS_recv()
4220 if( pxSocket->u.xTCP.uxEnoughSpace == 0U ) in prvTCPCreateStream()
4222 …pxSocket->u.xTCP.uxEnoughSpace = ( uxEnoughPerc * pxSocket->u.xTCP.uxRxStreamSize ) / sock100_PERC… in prvTCPCreateStream()
DFreeRTOS_TCP_State_Handling.c1050 pxNewSocket->u.xTCP.uxEnoughSpace = pxSocket->u.xTCP.uxEnoughSpace; in prvTCPSocketCopy()
DFreeRTOS_TCP_Transmission.c572 ( unsigned ) pxSocket->u.xTCP.uxEnoughSpace, in prvTCPCreateWindow()