Home
last modified time | relevance | path

Searched refs:xReceiveBlockTime (Results 1 – 7 of 7) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_UDP_API_utest.c187 xSocket->xReceiveBlockTime = 0x123; in test_FreeRTOS_recvfrom_NonBlockingFlagSet()
215 xSocket->xReceiveBlockTime = 0x123; in test_FreeRTOS_recvfrom_BlockingButTimeout()
223 …KET_RECEIVE ) | ( ( EventBits_t ) eSOCKET_INTR ), pdTRUE, pdFALSE, xSocket->xReceiveBlockTime, 0 ); in test_FreeRTOS_recvfrom_BlockingButTimeout()
251 xSocket->xReceiveBlockTime = 0x123; in test_FreeRTOS_recvfrom_BlockingButTimeoutSecondTime()
259 …KET_RECEIVE ) | ( ( EventBits_t ) eSOCKET_INTR ), pdTRUE, pdFALSE, xSocket->xReceiveBlockTime, 0 ); in test_FreeRTOS_recvfrom_BlockingButTimeoutSecondTime()
265 …KET_RECEIVE ) | ( ( EventBits_t ) eSOCKET_INTR ), pdTRUE, pdFALSE, xSocket->xReceiveBlockTime, 0 ); in test_FreeRTOS_recvfrom_BlockingButTimeoutSecondTime()
293 xSocket->xReceiveBlockTime = 0x123; in test_FreeRTOS_recvfrom_BlockingButInterrupted()
300 …IVE ) | ( ( EventBits_t ) eSOCKET_INTR ), pdTRUE, pdFALSE, xSocket->xReceiveBlockTime, eSOCKET_INT… in test_FreeRTOS_recvfrom_BlockingButInterrupted()
324 xSocket->xReceiveBlockTime = 0x123; in test_FreeRTOS_recvfrom_BlockingButInterruptedAndReceived()
331 …IVE ) | ( ( EventBits_t ) eSOCKET_INTR ), pdTRUE, pdFALSE, xSocket->xReceiveBlockTime, eSOCKET_INT… in test_FreeRTOS_recvfrom_BlockingButInterruptedAndReceived()
[all …]
DFreeRTOS_Sockets_TCP_API_utest.c281 xServerSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_accept_ReuseSocket_Timeout()
467 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_TimeOut()
494 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_Interrupted()
523 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_Interrupted1()
554 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_RxStreamNULL()
585 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_12BytesAlreadyInBuffer()
613 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_LowWaterReached()
649 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_LowWaterReached2()
681 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_12BytesArriveLater()
717 xSocket.xReceiveBlockTime = 0xAA; in test_FreeRTOS_recv_12BytesArriveLater_Timeout()
[all …]
DFreeRTOS_Sockets_GenericAPI_utest.c187 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
232 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_TCPSocket()
275 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_UDPSocket()
314 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
365 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_TCPv6Socket()
1174 TEST_ASSERT_EQUAL( vOptionValue, xSocket.xReceiveBlockTime ); in test_FreeRTOS_setsockopt_RecvTimeOut()
2682 xSocket.xReceiveBlockTime = 0x123; in test_FreeRTOS_connect_Timeout()
2694 …EventGroup, eSOCKET_CONNECT | eSOCKET_CLOSED, pdTRUE, pdFALSE, xSocket.xReceiveBlockTime, pdTRUE ); in test_FreeRTOS_connect_Timeout()
2718 xSocket.xReceiveBlockTime = 0x123; in test_FreeRTOS_connect_SocketClosed()
2730 …ntGroup, eSOCKET_CONNECT | eSOCKET_CLOSED, pdTRUE, pdFALSE, xSocket.xReceiveBlockTime, eSOCKET_CLO… in test_FreeRTOS_connect_SocketClosed()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_DiffConfig1/
DFreeRTOS_Sockets_DiffConfig1_GenericAPI_utest.c92 TEST_ASSERT_EQUAL( xSocket->xReceiveBlockTime, ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME ); in test_FreeRTOS_socket_TCPv6SocketLowMSS()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_State_Handling.c955 pxNewSocket->xReceiveBlockTime = pxSocket->xReceiveBlockTime; in prvTCPSocketCopy()
DFreeRTOS_Sockets.c757 pxSocket->xReceiveBlockTime = ipconfigSOCK_DEFAULT_RECEIVE_BLOCK_TIME; in FreeRTOS_socket()
1096 TickType_t xRemainingTime = pxSocket->xReceiveBlockTime; in prvRecvFromWaitForPacket()
2703 pxSocket->xReceiveBlockTime = xBlockTime; in prvSetOptionTimeout()
3800 xRemainingTime = pxSocket->xReceiveBlockTime; in FreeRTOS_connect()
4021 xRemainingTime = pxSocket->xReceiveBlockTime; in FreeRTOS_accept()
4166 xRemainingTime = pxSocket->xReceiveBlockTime; in prvRecvWait()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_IP_Private.h689 …TickType_t xReceiveBlockTime; /**< if recv[to] is called while no data is available, wait… member