Lines Matching refs:ucSocket
289 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_EventGroupCreationFailed() local
296 … sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ), ( void * ) ucSocket ); in test_FreeRTOS_socket_EventGroupCreationFailed()
300 vPortFree_Expect( ucSocket ); in test_FreeRTOS_socket_EventGroupCreationFailed()
315 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_TCPSocket_ProtocolDependent() local
318 pxSocket = ( FreeRTOS_Socket_t * ) ucSocket; in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
325 … sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ), ( void * ) ucSocket ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
339 TEST_ASSERT_EQUAL( ucSocket, xSocket ); in test_FreeRTOS_socket_TCPSocket_ProtocolDependent()
360 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ) ]; in test_FreeRTOS_socket_TCPSocket() local
363 pxSocket = ( FreeRTOS_Socket_t * ) ucSocket; in test_FreeRTOS_socket_TCPSocket()
370 … sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xTCP ), ( void * ) ucSocket ); in test_FreeRTOS_socket_TCPSocket()
384 TEST_ASSERT_EQUAL( ucSocket, xSocket ); in test_FreeRTOS_socket_TCPSocket()
405 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ) ]; in test_FreeRTOS_socket_UDPSocket() local
408 pxSocket = ( FreeRTOS_Socket_t * ) ucSocket; in test_FreeRTOS_socket_UDPSocket()
415 … sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ), ( void * ) ucSocket ); in test_FreeRTOS_socket_UDPSocket()
427 TEST_ASSERT_EQUAL( ucSocket, xSocket ); in test_FreeRTOS_socket_UDPSocket()
444 … uint8_t ucSocket[ ( sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ) ]; in test_FreeRTOS_socket_UDPSocket_ProtocolDependent() local
447 pxSocket = ( FreeRTOS_Socket_t * ) ucSocket; in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
454 … sizeof( *pxSocket ) - sizeof( pxSocket->u ) ) + sizeof( pxSocket->u.xUDP ), ( void * ) ucSocket ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
466 TEST_ASSERT_EQUAL( ucSocket, xSocket ); in test_FreeRTOS_socket_UDPSocket_ProtocolDependent()
495 uint8_t ucSocket[ sizeof( *pxSocketSet ) ]; in test_FreeRTOS_CreateSocketSet_EventGroupCreationFails() local
497 pvPortMalloc_ExpectAndReturn( sizeof( *pxSocketSet ), ucSocket ); in test_FreeRTOS_CreateSocketSet_EventGroupCreationFails()
501 vPortFree_Expect( ucSocket ); in test_FreeRTOS_CreateSocketSet_EventGroupCreationFails()
570 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_SET_CatchAssert2() local
571 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_SET_CatchAssert2()
583 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_SET_NoBitsToSet() local
585 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_SET_NoBitsToSet()
589 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_SET_NoBitsToSet()
602 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_SET_AllBitsToSet() local
604 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_SET_AllBitsToSet()
608 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_SET_AllBitsToSet()
637 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_CLR_CatchAssert2() local
638 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_CLR_CatchAssert2()
650 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_CLR_NoBitsToClear() local
652 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_CLR_NoBitsToClear()
656 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_CLR_NoBitsToClear()
672 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_CLR_AllBitsToClear() local
674 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_CLR_AllBitsToClear()
678 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_CLR_AllBitsToClear()
706 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_ISSET_CatchAssert2() local
707 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_ISSET_CatchAssert2()
719 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_ISSET_SocketSetDifferent() local
721 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_ISSET_SocketSetDifferent()
725 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_ISSET_SocketSetDifferent()
738 uint8_t ucSocket[ sizeof( FreeRTOS_Socket_t ) ]; in test_FreeRTOS_FD_ISSET_SocketSetSame() local
740 Socket_t xSocket = ucSocket; in test_FreeRTOS_FD_ISSET_SocketSetSame()
744 memset( ucSocket, 0, sizeof( FreeRTOS_Socket_t ) ); in test_FreeRTOS_FD_ISSET_SocketSetSame()