Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets_DiffConfig1/
DFreeRTOS_Sockets_DiffConfig1_privates_utest.c68 BaseType_t xIsBound );
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets_DiffConfig/
DFreeRTOS_Sockets_DiffConfig_privates_utest.c68 BaseType_t xIsBound );
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c69 BaseType_t xIsBound );
167 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdFALSE; in test_prvValidSocket_InvalidOrNULLSocket() local
169 xReturn = prvValidSocket( NULL, xProtocol, xIsBound ); in test_prvValidSocket_InvalidOrNULLSocket()
173 xReturn = prvValidSocket( pxSocket, xProtocol, xIsBound ); in test_prvValidSocket_InvalidOrNULLSocket()
185 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdTRUE; in test_prvValidSocket_SocketBoundSetButNotBound() local
191 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_SocketBoundSetButNotBound()
203 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdFALSE; in test_prvValidSocket_SocketBoundResetButBound() local
209 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_SocketBoundResetButBound()
221 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdTRUE; in test_prvValidSocket_InvalidProtocol() local
229 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_InvalidProtocol()
DFreeRTOS_Sockets_UDP_API_utest.c69 BaseType_t xIsBound );
DFreeRTOS_Sockets_TCP_API_utest.c69 BaseType_t xIsBound );
DFreeRTOS_Sockets_GenericAPI_utest.c69 BaseType_t xIsBound );
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Sockets.c124 BaseType_t xIsBound );
232 BaseType_t xIsBound ) in prvValidSocket() argument
243 else if( ( xIsBound != pdFALSE ) && !socketSOCKET_IS_BOUND( pxSocket ) ) in prvValidSocket()