Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_TCP_API_utest.c976 xSocket.xSendBlockTime = 100; in test_FreeRTOS_send_LessSpaceInStreamBuffer_Timeout()
1018 xSocket.xSendBlockTime = 100; in test_FreeRTOS_send_LessSpaceInStreamBuffer_EventuallySpaceAvailable()
1060 xSocket.xSendBlockTime = 100; in test_FreeRTOS_send_MultipleIterationsAndNoSuccess()
1112 xSocket.xSendBlockTime = 100; in test_FreeRTOS_send_IPTaskWithNULLBuffer()
1147 xSocket.xSendBlockTime = 100; in test_FreeRTOS_send_DontWaitFlag()
DFreeRTOS_Sockets_GenericAPI_utest.c342 TEST_ASSERT_EQUAL( xSocket->xSendBlockTime, ipconfigSOCK_DEFAULT_SEND_BLOCK_TIME ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
387 TEST_ASSERT_EQUAL( xSocket->xSendBlockTime, ipconfigSOCK_DEFAULT_SEND_BLOCK_TIME ); in test_FreeRTOS_socket_TCPSocket()
430 TEST_ASSERT_EQUAL( xSocket->xSendBlockTime, ipconfigSOCK_DEFAULT_SEND_BLOCK_TIME ); in test_FreeRTOS_socket_UDPSocket()
469 TEST_ASSERT_EQUAL( xSocket->xSendBlockTime, ipconfigSOCK_DEFAULT_SEND_BLOCK_TIME ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
1223 TEST_ASSERT_EQUAL( vOptionValue, xSocket.xSendBlockTime ); in test_FreeRTOS_setsockopt_SendTimeOut()
1245 TEST_ASSERT_EQUAL( vOptionValue, xSocket.xSendBlockTime ); in test_FreeRTOS_setsockopt_SendTimeOutUDP()
1267 TEST_ASSERT_EQUAL( ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS, xSocket.xSendBlockTime ); in test_FreeRTOS_setsockopt_SendTimeOutUDPMoreBockingTime()
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_TCP_State_Handling.c1045 pxNewSocket->xSendBlockTime = pxSocket->xSendBlockTime; in prvTCPSocketCopy()
DFreeRTOS_Sockets.c476 pxSocket->xSendBlockTime = ipconfigSOCK_DEFAULT_SEND_BLOCK_TIME; in FreeRTOS_socket()
1098 xTicksToWait = pxSocket->xSendBlockTime; in FreeRTOS_sendto()
1823 pxSocket->xSendBlockTime = *( ( const TickType_t * ) pvOptionValue ); in FreeRTOS_setsockopt()
1831 if( pxSocket->xSendBlockTime > ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS ) in FreeRTOS_setsockopt()
1833 pxSocket->xSendBlockTime = ipconfigUDP_MAX_SEND_BLOCK_TIME_TICKS; in FreeRTOS_setsockopt()
3770 xRemainingTime = pxSocket->xSendBlockTime; in FreeRTOS_send()
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_IP_Private.h664 …TickType_t xSendBlockTime; /**< if send[to] is called while there is not enough space … member