Lines Matching refs:pcSource
2302 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()
2359 xReturn = FreeRTOS_inet_pton( xAddressFamily, pcSource, &xDestination ); in test_FreeRTOS_inet_pton_IPv6HappyPath()
2426 const char * pcSource = "12345678::::"; in test_FreeRTOS_EUI48_pton_InvalidInput() local
2429 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput()
2439 const char * pcSource = "12:34:56:78:ab:ty"; in test_FreeRTOS_EUI48_pton_InvalidInput2() local
2442 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput2()
2452 const char * pcSource = "12:34#56:78:ab:cd"; in test_FreeRTOS_EUI48_pton_InvalidInput3() local
2455 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput3()
2465 const char * pcSource = ""; in test_FreeRTOS_EUI48_pton_InvalidInput4() local
2468 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput4()
2478 const char * pcSource = "12:34:56:78:ab:cd"; in test_FreeRTOS_EUI48_pton_HappyPath() local
2482 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_HappyPath()
2493 const char * pcSource = "12-34-56-78-ab-cd"; in test_FreeRTOS_EUI48_pton_HappyPath1() local
2497 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_HappyPath1()
2508 const char * pcSource = "FF-34-56-78-ab-cd"; in test_FreeRTOS_EUI48_pton_HappyPath2() local
2512 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_HappyPath2()