Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_privates_utest.c95 BaseType_t xIsBound );
143 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdFALSE; in test_prvValidSocket_InvalidOrNULLSocket() local
145 xReturn = prvValidSocket( NULL, xProtocol, xIsBound ); in test_prvValidSocket_InvalidOrNULLSocket()
149 xReturn = prvValidSocket( pxSocket, xProtocol, xIsBound ); in test_prvValidSocket_InvalidOrNULLSocket()
161 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdTRUE; in test_prvValidSocket_SocketBoundSetButNotBound() local
167 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_SocketBoundSetButNotBound()
179 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdFALSE; in test_prvValidSocket_SocketBoundResetButBound() local
185 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_SocketBoundResetButBound()
197 BaseType_t xProtocol = FREERTOS_IPPROTO_UDP, xIsBound = pdTRUE; in test_prvValidSocket_InvalidProtocol() local
205 xReturn = prvValidSocket( &xSocket, xProtocol, xIsBound ); in test_prvValidSocket_InvalidProtocol()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_Sockets.c133 BaseType_t xIsBound );
404 BaseType_t xIsBound ) in prvValidSocket() argument
412 else if( ( xIsBound != pdFALSE ) && !socketSOCKET_IS_BOUND( pxSocket ) ) in prvValidSocket()