Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_State_Handling_IPv4/
HDFreeRTOS_TCP_State_Handling_IPv4_utest.c154 pxSocket->u.xTCP.usChildCount = 10; in test_prvHandleListen_IPV4_NewSocketExceedLimit()
186 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV4_NewSocketGood()
225 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV4_NewSocketGoodValidDataLength()
263 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV4_NewSocketNULLSocket()
296 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV4_NewSocketInvalidSocket()
329 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV4_NewSocketSocketCopyFailure()
/FreeRTOS-Plus-TCP-v4.0.0/source/
HDFreeRTOS_TCP_State_Handling_IPv4.c129 if( pxSocket->u.xTCP.usChildCount >= pxSocket->u.xTCP.usBacklog ) in prvHandleListen_IPV4()
133 pxSocket->u.xTCP.usChildCount, in prvHandleListen_IPV4()
135 ( pxSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvHandleListen_IPV4()
HDFreeRTOS_TCP_State_Handling_IPv6.c124 if( pxSocket->u.xTCP.usChildCount >= pxSocket->u.xTCP.usBacklog ) in prvHandleListen_IPV6()
128 pxSocket->u.xTCP.usChildCount, in prvHandleListen_IPV6()
130 ( pxSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvHandleListen_IPV6()
HDFreeRTOS_TCP_State_Handling.c1023 pxSocket->u.xTCP.usChildCount++; in prvTCPSocketCopy()
1027 pxSocket->u.xTCP.usChildCount, in prvTCPSocketCopy()
1029 ( pxSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvTCPSocketCopy()
HDFreeRTOS_Sockets.c2312 ( pxOtherSocket->u.xTCP.usChildCount != 0U ) ) in prvTCPSetSocketCount()
2314 pxOtherSocket->u.xTCP.usChildCount--; in prvTCPSetSocketCount()
2317 pxOtherSocket->u.xTCP.usChildCount, in prvTCPSetSocketCount()
2319 … ( pxOtherSocket->u.xTCP.usChildCount == 1U ) ? "" : "ren" ) ); in prvTCPSetSocketCount()
5786 pxSocket->u.xTCP.usChildCount, in vTCPNetStat_TCPSocket()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_State_Handling_IPv6/
HDFreeRTOS_TCP_State_Handling_IPv6_utest.c238 pxSocket->u.xTCP.usChildCount = 10; in test_prvHandleListen_IPV6_NewSocketExceedLimit()
273 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV6_NewSocketNull()
309 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV6_NewSocketInvalid()
346 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV6_NewSocketCopyFailure()
389 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV6_NewSocketGood()
441 pxSocket->u.xTCP.usChildCount = 1; in test_prvHandleListen_IPV6_NewSocketGoodValidDataLength()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
HDFreeRTOS_Sockets_privates_utest.c1363 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_1()
1373 TEST_ASSERT_EQUAL( 100, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_1()
1394 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_2()
1404 TEST_ASSERT_EQUAL( 100, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_2()
1425 xChildSocket.u.xTCP.usChildCount = 0; in test_prvTCPSetSocketCount_NotListeningSock_3()
1435 TEST_ASSERT_EQUAL( 0, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_3()
1456 xChildSocket.u.xTCP.usChildCount = 100; in test_prvTCPSetSocketCount_NotListeningSock_HappyPath()
1464 TEST_ASSERT_EQUAL( 99, xChildSocket.u.xTCP.usChildCount ); in test_prvTCPSetSocketCount_NotListeningSock_HappyPath()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
HDFreeRTOS_IP_Private.h594 …uint16_t usChildCount; /**< In case of a listening socket: number of connections on this p… member