Home
last modified time | relevance | path

Searched refs:pcDestination (Results 1 – 9 of 9) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Routing/
DFreeRTOS_Routing_stubs.c49 char * pcDestination, in pcStubFreeRTOS_inet_ntop() argument
57 TEST_ASSERT_EQUAL( pcStubFreeRTOS_inet_ntop_TargetDestination, pcDestination ); in pcStubFreeRTOS_inet_ntop()
60 if( ( pcDestination != NULL ) && ( pcStubFreeRTOS_inet_ntop_TargetCopySource != NULL ) ) in pcStubFreeRTOS_inet_ntop()
62 …memcpy( pcDestination, pcStubFreeRTOS_inet_ntop_TargetCopySource, ulStubFreeRTOS_inet_ntop_CopySiz… in pcStubFreeRTOS_inet_ntop()
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_IPv6_Sockets.c293 static BaseType_t prv_ntop6_write_zeros( char * pcDestination, in prv_ntop6_write_zeros() argument
302 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
310 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_zeros()
344 static BaseType_t prv_ntop6_write_short( char * pcDestination, in prv_ntop6_write_short() argument
360 pcDestination[ pxSet->uxTargetIndex ] = ':'; in prv_ntop6_write_short()
371 uxLength = uxHexPrintShort( &( pcDestination[ pxSet->uxTargetIndex ] ), in prv_ntop6_write_short()
399 char * pcDestination, in FreeRTOS_inet_ntop6() argument
421 if( prv_ntop6_write_zeros( pcDestination, uxSize, &( xSet ) ) == pdFAIL ) in FreeRTOS_inet_ntop6()
430 if( prv_ntop6_write_short( pcDestination, uxSize, &( xSet ) ) == pdFAIL ) in FreeRTOS_inet_ntop6()
447 pcDestination[ xSet.uxTargetIndex ] = '\0'; in FreeRTOS_inet_ntop6()
[all …]
DFreeRTOS_IPv4_Sockets.c199 char * pcDestination, in FreeRTOS_inet_ntop4() argument
215 ( void ) FreeRTOS_inet_ntoa( ulIPAddress, pcDestination ); in FreeRTOS_inet_ntop4()
216 pcReturn = pcDestination; in FreeRTOS_inet_ntop4()
DFreeRTOS_Sockets.c3221 char * pcDestination, in FreeRTOS_inet_ntop() argument
3231 pcResult = FreeRTOS_inet_ntop4( pvSource, pcDestination, uxSize ); in FreeRTOS_inet_ntop()
3237 pcResult = FreeRTOS_inet_ntop6( pvSource, pcDestination, uxSize ); in FreeRTOS_inet_ntop()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IPv4_Sockets/
DFreeRTOS_IPv4_Sockets_utest.c158 char pcDestination[ uxSize ]; in test_FreeRTOS_inet_ntop4_LessBufferLength() local
160 pucReturn = ( char * ) FreeRTOS_inet_ntop4( &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop4_LessBufferLength()
173 char pcDestination[ uxSize ]; in test_FreeRTOS_inet_ntop4_HappyCase() local
178 pucReturn = FreeRTOS_inet_ntop4( &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop4_HappyCase()
180 TEST_ASSERT_EQUAL_STRING( "255.255.255.255", pcDestination ); in test_FreeRTOS_inet_ntop4_HappyCase()
185 pucReturn = FreeRTOS_inet_ntop4( &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop4_HappyCase()
187 TEST_ASSERT_EQUAL_STRING( "0.0.0.0", pcDestination ); in test_FreeRTOS_inet_ntop4_HappyCase()
192 pucReturn = FreeRTOS_inet_ntop4( &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop4_HappyCase()
194 TEST_ASSERT_EQUAL_STRING( "18.239.205.171", pcDestination ); in test_FreeRTOS_inet_ntop4_HappyCase()
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_IPv4_Sockets.h47 char * pcDestination,
DFreeRTOS_IPv6_Sockets.h98 char * pcDestination,
DFreeRTOS_Sockets.h495 char * pcDestination,
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_IPv6/
DFreeRTOS_Sockets_IPv6_utest.c67 extern BaseType_t prv_ntop6_write_zeros( char * pcDestination,
70 extern BaseType_t prv_ntop6_write_short( char * pcDestination,