Home
last modified time | relevance | path

Searched refs:pdFREERTOS_ERRNO_ENOTCONN (Results 1 – 9 of 9) sorted by relevance

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/ConfigFiles/
HDFreeRTOS_errno_TCP.h77 #define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ macro
/FreeRTOS-Plus-TCP-v3.1.0/source/include/
HDFreeRTOS_errno_TCP.h78 #define pdFREERTOS_ERRNO_ENOTCONN 128 /* Socket is not connected */ macro
HDFreeRTOS_Sockets.h83 #define FREERTOS_ECLOSED ( -pdFREERTOS_ERRNO_ENOTCONN )
/FreeRTOS-Plus-TCP-v3.1.0/source/
HDFreeRTOS_Sockets.c3152 xResult = -pdFREERTOS_ERRNO_ENOTCONN; in FreeRTOS_connect()
3386 xByteCount = -pdFREERTOS_ERRNO_ENOTCONN; in FreeRTOS_recv()
3563 xResult = -pdFREERTOS_ERRNO_ENOTCONN; in prvTCPSendCheck()
3824 xByteCount = ( BaseType_t ) -pdFREERTOS_ERRNO_ENOTCONN; in FreeRTOS_send()
3945 xResult = -pdFREERTOS_ERRNO_ENOTCONN; in FreeRTOS_shutdown()
HDFreeRTOS_IP_Utils.c1125 case pdFREERTOS_ERRNO_ENOTCONN: in FreeRTOS_strerror_r()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
HDFreeRTOS_Sockets_TCP_API_utest.c411 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_ENOTCONN, xReturn ); in test_FreeRTOS_recv_NotConnectedAndNoMemory()
866 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_ENOTCONN, xReturn ); in test_FreeRTOS_send_InvalidInput()
1330 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_ENOTCONN, xReturn ); in test_FreeRTOS_shutdown_Invalid()
HDFreeRTOS_Sockets_GenericAPI_utest.c2772 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_ENOTCONN, xResult ); in test_FreeRTOS_connect_SocketClosed()
HDFreeRTOS_Sockets_privates_utest.c2195 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_ENOTCONN, lReturn ); in test_prvTCPSendCheck_InvalidValues()
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_IP_Utils/
HDFreeRTOS_IP_Utils_utest.c1508 BaseType_t xErrnum = pdFREERTOS_ERRNO_ENOTCONN; in test_FreeRTOS_strerror_r_ENOTCONN()