Searched refs:usChildCount (Results 1 – 5 of 5) sorted by relevance
956 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()
1700 ( 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()
1281 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()
1550 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()
576 …uint16_t usChildCount; /**< In case of a listening socket: number of connections on this p… member