Searched refs:pcDestination (Results 1 – 9 of 9) sorted by relevance
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Routing/ |
D | FreeRTOS_Routing_stubs.c | 49 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/ |
D | FreeRTOS_IPv6_Sockets.c | 293 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 …]
|
D | FreeRTOS_IPv4_Sockets.c | 199 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()
|
D | FreeRTOS_Sockets.c | 3221 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/ |
D | FreeRTOS_IPv4_Sockets_utest.c | 158 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/ |
D | FreeRTOS_IPv4_Sockets.h | 47 char * pcDestination,
|
D | FreeRTOS_IPv6_Sockets.h | 98 char * pcDestination,
|
D | FreeRTOS_Sockets.h | 495 char * pcDestination,
|
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_IPv6/ |
D | FreeRTOS_Sockets_IPv6_utest.c | 67 extern BaseType_t prv_ntop6_write_zeros( char * pcDestination, 70 extern BaseType_t prv_ntop6_write_short( char * pcDestination,
|