Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v3.1.0/source/include/
DFreeRTOS_Sockets.h474 char * pcDestination,
481 char * pcDestination,
/FreeRTOS-Plus-TCP-v3.1.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_GenericAPI_utest.c2379 char * pcDestination; in test_FreeRTOS_inet_ntop_IncorrectAddrFamily() local
2382 pucReturn = FreeRTOS_inet_ntop( xAddressFamily, &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop_IncorrectAddrFamily()
2396 char pcDestination[ uxSize ]; in test_FreeRTOS_inet_ntop_IncorrectSize() local
2398 pucReturn = FreeRTOS_inet_ntop( xAddressFamily, &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop_IncorrectSize()
2412 char pcDestination[ uxSize ]; in test_FreeRTOS_inet_ntop_HappyCase() local
2415 pucReturn = FreeRTOS_inet_ntop( xAddressFamily, &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop_HappyCase()
2417 TEST_ASSERT_EQUAL( pcDestination, pucReturn ); in test_FreeRTOS_inet_ntop_HappyCase()
2418 TEST_ASSERT_EQUAL_STRING( "255.255.255.255", pcDestination ); in test_FreeRTOS_inet_ntop_HappyCase()
2421 pucReturn = FreeRTOS_inet_ntop( xAddressFamily, &ulSource, pcDestination, uxSize ); in test_FreeRTOS_inet_ntop_HappyCase()
2423 TEST_ASSERT_EQUAL( pcDestination, pucReturn ); in test_FreeRTOS_inet_ntop_HappyCase()
[all …]
/FreeRTOS-Plus-TCP-v3.1.0/source/
DFreeRTOS_Sockets.c2437 char * pcDestination, in FreeRTOS_inet_ntop() argument
2446 pcResult = FreeRTOS_inet_ntop4( pvSource, pcDestination, uxSize ); in FreeRTOS_inet_ntop()
2473 char * pcDestination, in FreeRTOS_inet_ntop4() argument
2489 ( void ) FreeRTOS_inet_ntoa( ulIPAddress, pcDestination ); in FreeRTOS_inet_ntop4()
2490 pcReturn = pcDestination; in FreeRTOS_inet_ntop4()