Searched refs:cDestination (Results 1 – 2 of 2) sorted by relevance
| /FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_IPv6/ |
| D | FreeRTOS_Sockets_IPv6_utest.c | 596 char cDestination[ NTOP_CHAR_BUFFER_SIZE ] = { '\0' }; in test_prv_ntop6_write_zeros() local 606 xReturn = prv_ntop6_write_zeros( cDestination, 40, &( xSet ) ); in test_prv_ntop6_write_zeros() 609 TEST_ASSERT_EQUAL_MEMORY( &cDestination[ xSet.xZeroStart * 5 ], ":", 1 ); in test_prv_ntop6_write_zeros() 619 char cDestination[ NTOP_CHAR_BUFFER_SIZE ] = { '\0' }; in test_prv_ntop6_write_zeros_AddressEndsInZeroes() local 628 xReturn = prv_ntop6_write_zeros( cDestination, 40, &( xSet ) ); in test_prv_ntop6_write_zeros_AddressEndsInZeroes() 631 TEST_ASSERT_EQUAL_MEMORY( &cDestination[ xSet.xZeroStart * 5 ], "::", 2 ); in test_prv_ntop6_write_zeros_AddressEndsInZeroes() 641 char cDestination[ NTOP_CHAR_BUFFER_SIZE ] = { '\0' }; in test_prv_ntop6_write_zeros_NotEnoughSpaceInBuffer() local 650 xReturn = prv_ntop6_write_zeros( cDestination, 40, &( xSet ) ); in test_prv_ntop6_write_zeros_NotEnoughSpaceInBuffer() 662 char cDestination[ NTOP_CHAR_BUFFER_SIZE ] = { '\0' }; in test_prv_ntop6_write_zeros_NotEnoughSpaceInBuffer_2() local 671 xReturn = prv_ntop6_write_zeros( cDestination, 40, &( xSet ) ); in test_prv_ntop6_write_zeros_NotEnoughSpaceInBuffer_2() [all …]
|
| /FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/ |
| D | FreeRTOS_Sockets_GenericAPI_utest.c | 3582 char cDestination[ xSize ]; in test_FreeRTOS_inet_ntop_IPv4() local 3585 memset( cDestination, 0, sizeof( cDestination ) ); in test_FreeRTOS_inet_ntop_IPv4() 3587 FreeRTOS_inet_ntop4_ExpectAndReturn( &ulIPAddress, cDestination, xSize, cDestination ); in test_FreeRTOS_inet_ntop_IPv4() 3589 pcReturn = FreeRTOS_inet_ntop( xAddressFamily, &ulIPAddress, cDestination, xSize ); in test_FreeRTOS_inet_ntop_IPv4() 3603 char cDestination[ xSize ]; in test_FreeRTOS_inet_ntop_IPv6() local 3606 memset( cDestination, 0, sizeof( cDestination ) ); in test_FreeRTOS_inet_ntop_IPv6() 3608 FreeRTOS_inet_ntop6_ExpectAndReturn( pxIPAddress, cDestination, xSize, cDestination ); in test_FreeRTOS_inet_ntop_IPv6() 3610 pcReturn = FreeRTOS_inet_ntop( xAddressFamily, pxIPAddress, cDestination, xSize ); in test_FreeRTOS_inet_ntop_IPv6() 3624 char cDestination[ xSize ]; in test_FreeRTOS_inet_ntop_Unknown() local 3627 memset( cDestination, 0, sizeof( cDestination ) ); in test_FreeRTOS_inet_ntop_Unknown() [all …]
|