Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_GenericAPI_utest.c2318 uint32_t ulDestination = 0; 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()
2324 TEST_ASSERT_EQUAL( 0, ulDestination ); in test_FreeRTOS_inet_pton_Octal()
2335 uint32_t ulDestination; 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()
2343 TEST_ASSERT_EQUAL_UINT32( ulExpectDestination, ulDestination ); in test_FreeRTOS_inet_pton_HappyPath()