Home
last modified time | relevance | path

Searched refs:usChildCount (Results 1 – 5 of 5) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_TCP_State_Handling.c956 if( pxSocket->u.xTCP.usChildCount >= pxSocket->u.xTCP.usBacklog ) in prvHandleListen()
960 pxSocket->u.xTCP.usChildCount, in prvHandleListen()
962 ( pxSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvHandleListen()
1112 pxSocket->u.xTCP.usChildCount++; in prvTCPSocketCopy()
1116 pxSocket->u.xTCP.usChildCount, in prvTCPSocketCopy()
1118 ( pxSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvTCPSocketCopy()
DFreeRTOS_Sockets.c1700 ( pxOtherSocket->u.xTCP.usChildCount != 0U ) ) in prvTCPSetSocketCount()
1702 pxOtherSocket->u.xTCP.usChildCount--; in prvTCPSetSocketCount()
1705 pxOtherSocket->u.xTCP.usChildCount, in prvTCPSetSocketCount()
1707 … ( pxOtherSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvTCPSetSocketCount()
4840 pxSocket->u.xTCP.usChildCount, in vTCPNetStat()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c1281 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_1()
1291 TEST_ASSERT_EQUAL( 100, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_1()
1312 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_2()
1322 TEST_ASSERT_EQUAL( 100, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_2()
1343 xChildSocket.u.xTCP.usChildCount = 0; in test_prvTCPSetSocketCount_NotListeningSock_3()
1353 TEST_ASSERT_EQUAL( 0, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_3()
1374 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_HappyPath()
1382 TEST_ASSERT_EQUAL( 99, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_HappyPath()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_TCP_State_Handling/
DFreeRTOS_TCP_State_Handling_utest.c1550 pxSocket->u.xTCP.usChildCount = 10; in test_prvHandleListen_New_Socket_Exceed_Limit()
1576 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_New_Socket_Good()
1607 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_New_Socket_NULL_Socket()
1634 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_New_Socket_Invalid_Socket()
1661 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_New_Socket_Socket_Copy_Failure()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_IP_Private.h576 …uint16_t usChildCount; /**< In case of a listening socket: number of connections on this p… member