Home
last modified time | relevance | path

Searched refs:pcSource (Results 1 – 7 of 7) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_IPv4_Sockets.c69 BaseType_t FreeRTOS_inet_pton4( const char * pcSource, in FreeRTOS_inet_pton4() argument
77 const char * pcIPAddress = pcSource; in FreeRTOS_inet_pton4()
117 if( pcIPAddress == pcSource ) in FreeRTOS_inet_pton4()
DFreeRTOS_IPv6_Sockets.c564 BaseType_t FreeRTOS_inet_pton6( const char * pcSource, in FreeRTOS_inet_pton6() argument
572 const char * pcIterator = pcSource; in FreeRTOS_inet_pton6()
DFreeRTOS_Sockets.c3175 const char * pcSource, in FreeRTOS_inet_pton() argument
3185 xResult = FreeRTOS_inet_pton4( pcSource, pvDestination ); in FreeRTOS_inet_pton()
3191 xResult = FreeRTOS_inet_pton6( pcSource, pvDestination ); in FreeRTOS_inet_pton()
3372 BaseType_t FreeRTOS_EUI48_pton( const char * pcSource, in FreeRTOS_EUI48_pton() argument
3379 size_t uxLength = strlen( pcSource ); in FreeRTOS_EUI48_pton()
3390 cChar = pcSource[ uxSourceIndex ]; in FreeRTOS_EUI48_pton()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_IPv6/
DFreeRTOS_Sockets_IPv6_utest.c1067 const char * pcSource = "fe80::2"; in test_FreeRTOS_inet_pton6() local
1073 xResult = FreeRTOS_inet_pton6( pcSource, uIPv6AddressDstn ); in test_FreeRTOS_inet_pton6()
1084 const char * pcSource = "::"; in test_FreeRTOS_inet_pton6_DoubleColonInput() local
1090 xResult = FreeRTOS_inet_pton6( pcSource, uIPv6AddressDstn ); in test_FreeRTOS_inet_pton6_DoubleColonInput()
1101 const char * pcSource = "::fe80:2"; in test_FreeRTOS_inet_pton6_StartsWithSingleColon() local
1107 xResult = FreeRTOS_inet_pton6( pcSource, uIPv6AddressDstn ); in test_FreeRTOS_inet_pton6_StartsWithSingleColon()
1118 const char * pcSource = "fe80:de:de:de:de:ff00:de00:7408"; in test_FreeRTOS_inet_pton6_NoShortHand() local
1124 xResult = FreeRTOS_inet_pton6( pcSource, uIPv6AddressDstn ); in test_FreeRTOS_inet_pton6_NoShortHand()
1135 const char * pcSource = "fe80:de:de:de:de:ff00:de00:7408:7409"; in test_FreeRTOS_inet_pton6_LongerInput() local
1141 xResult = FreeRTOS_inet_pton6( pcSource, uIPv6AddressDstn ); in test_FreeRTOS_inet_pton6_LongerInput()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/include/
DFreeRTOS_IPv4_Sockets.h43 BaseType_t FreeRTOS_inet_pton4( const char * pcSource,
DFreeRTOS_Sockets.h490 const char * pcSource,
498 BaseType_t FreeRTOS_inet_pton6( const char * pcSource,
503 BaseType_t FreeRTOS_EUI48_pton( const char * pcSource,
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_GenericAPI_utest.c2302 const char * pcSource; in test_FreeRTOS_inet_pton_IncorrectAddressFamily() local
2305 xReturn = FreeRTOS_inet_pton( xAddressFamily, pcSource, pvDestination ); in test_FreeRTOS_inet_pton_IncorrectAddressFamily()
2317 const char * pcSource = "00.01.2.3"; in test_FreeRTOS_inet_pton_Octal() local
2320 FreeRTOS_inet_pton4_ExpectAndReturn( pcSource, &ulDestination, pdFAIL ); in test_FreeRTOS_inet_pton_Octal()
2321 xReturn = FreeRTOS_inet_pton( xAddressFamily, pcSource, &ulDestination ); in test_FreeRTOS_inet_pton_Octal()
2334 const char * pcSource = "255.255.255.255"; in test_FreeRTOS_inet_pton_HappyPath() local
2338 FreeRTOS_inet_pton4_ExpectAndReturn( pcSource, &ulDestination, pdPASS ); in test_FreeRTOS_inet_pton_HappyPath()
2340 xReturn = FreeRTOS_inet_pton( xAddressFamily, pcSource, &ulDestination ); in test_FreeRTOS_inet_pton_HappyPath()
2353 const char * pcSource = "2001::1"; in test_FreeRTOS_inet_pton_IPv6HappyPath() local
2357 FreeRTOS_inet_pton6_ExpectAndReturn( pcSource, &xDestination, pdPASS ); in test_FreeRTOS_inet_pton_IPv6HappyPath()
[all …]