Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_TCP_Transmission/
DFreeRTOS_TCP_Transmission_utest.c293 pxSocket->u.xTCP.bits.bCloseRequested = pdFALSE; in test_prvTCPSendPacket_Other_State_Something_To_Send()
393 pxSocket->u.xTCP.bits.bCloseRequested = pdFALSE; in test_prvTCPSendRepeated_Repeat_8()
1594 pxSocket->u.xTCP.bits.bCloseRequested = pdFALSE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_No_Buffer()
1627 pxSocket->u.xTCP.bits.bCloseRequested = pdFALSE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_MSS_0_KLCount4()
1660 pxSocket->u.xTCP.bits.bCloseRequested = pdFALSE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Not_Close_Not_ShutDown_KLcount1()
1695 pxSocket->u.xTCP.bits.bCloseRequested = pdTRUE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Req_Close_Req_ShutDown_Tx_Done_KLcount1()
1733 pxSocket->u.xTCP.bits.bCloseRequested = pdTRUE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Req_Close_Req_ShutDown_Tx_Not_Done_KLcount1()
1770 pxSocket->u.xTCP.bits.bCloseRequested = pdTRUE; in test_prvTCPPrepareSend_State_Established_Non_Zero_Data_Req_Close_Req_ShutDown_Tx_Not_Done_Not_Last_Packet_KLcount1()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_IP_Private.h573 bCloseRequested : 1, /**< Request to finalise the connection */ member
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_TCP_API_utest.c961 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bCloseRequested ); in test_FreeRTOS_send_ExactSpaceInStreamBuffer()
966 xSocket.u.xTCP.bits.bCloseRequested = pdFALSE; in test_FreeRTOS_send_ExactSpaceInStreamBuffer()
978 TEST_ASSERT_EQUAL( pdFALSE, xSocket.u.xTCP.bits.bCloseRequested ); in test_FreeRTOS_send_ExactSpaceInStreamBuffer()
1014 TEST_ASSERT_EQUAL( pdTRUE, xSocket.u.xTCP.bits.bCloseRequested ); in test_FreeRTOS_send_MoreSpaceInStreamBuffer()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_Transmission.c895 if( pxSocket->u.xTCP.bits.bCloseRequested != pdFALSE_UNSIGNED ) in prvTCPPrepareSend()
DFreeRTOS_Sockets.c4463 pxSocket->u.xTCP.bits.bCloseRequested = pdTRUE_UNSIGNED; in prvTCPSendLoop()