Home
last modified time | relevance | path

Searched refs:prvMakeSureSocketIsBound (Results 1 – 2 of 2) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c72 BaseType_t prvMakeSureSocketIsBound( FreeRTOS_Socket_t * pxSocket );
445 xResult = prvMakeSureSocketIsBound( NULL ); in test_prvMakeSureSocketIsBound_NULLSocket()
460 xResult = prvMakeSureSocketIsBound( &xSocket ); in test_prvMakeSureSocketIsBound_TCPProtocol()
477 xResult = prvMakeSureSocketIsBound( &xSocket ); in test_prvMakeSureSocketIsBound_SocketAlreadyBound()
500 xResult = prvMakeSureSocketIsBound( &xSocket ); in test_prvMakeSureSocketIsBound_SocketNotBound_BindingFails()
527 xResult = prvMakeSureSocketIsBound( &xSocket ); in test_prvMakeSureSocketIsBound_SocketNotBound_BindingSuccess()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_Sockets.c227 static BaseType_t prvMakeSureSocketIsBound( FreeRTOS_Socket_t * pxSocket );
1370 static BaseType_t prvMakeSureSocketIsBound( FreeRTOS_Socket_t * pxSocket ) in prvMakeSureSocketIsBound() function
1637 if( prvMakeSureSocketIsBound( pxSocket ) == pdTRUE ) in FreeRTOS_sendto()