Lines Matching refs:ulIPAddress

158     uint32_t ulIPAddress;  in test_FreeRTOS_inet_pton4()  local
160 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
161 xResult = FreeRTOS_inet_pton4( pucValidString1, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
163 …TEST_ASSERT_EQUAL_MESSAGE( ulValidResponse1, ulIPAddress, "Could not convert string 1 correctly." … in test_FreeRTOS_inet_pton4()
165 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
166 xResult = FreeRTOS_inet_pton4( pucValidString2, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
168 …TEST_ASSERT_EQUAL_MESSAGE( ulValidResponse2, ulIPAddress, "Could not convert string 2 correctly." … in test_FreeRTOS_inet_pton4()
170 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
171 xResult = FreeRTOS_inet_pton4( pucValidString3, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
173 …TEST_ASSERT_EQUAL_MESSAGE( ulValidResponse3, ulIPAddress, "Could not convert string 3 correctly." … in test_FreeRTOS_inet_pton4()
175 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
176 xResult = FreeRTOS_inet_pton4( pucValidString4, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
178 …TEST_ASSERT_EQUAL_MESSAGE( ulValidResponse4, ulIPAddress, "Could not convert string 4 correctly." … in test_FreeRTOS_inet_pton4()
180 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
181 xResult = FreeRTOS_inet_pton4( pucValidString5, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
183 …TEST_ASSERT_EQUAL_MESSAGE( ulValidResponse5, ulIPAddress, "Could not convert string 5 correctly." … in test_FreeRTOS_inet_pton4()
186 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
187 xResult = FreeRTOS_inet_pton4( pucInvalidString1, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
189 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 1." ); in test_FreeRTOS_inet_pton4()
191 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
192 xResult = FreeRTOS_inet_pton4( pucInvalidString2, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
194 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 2." ); in test_FreeRTOS_inet_pton4()
196 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
197 xResult = FreeRTOS_inet_pton4( pucInvalidString3, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
199 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 3." ); in test_FreeRTOS_inet_pton4()
201 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
202 xResult = FreeRTOS_inet_pton4( pucInvalidString4, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
204 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 4." ); in test_FreeRTOS_inet_pton4()
206 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
207 xResult = FreeRTOS_inet_pton4( pucInvalidString5, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
209 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 5." ); in test_FreeRTOS_inet_pton4()
211 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
212 xResult = FreeRTOS_inet_pton4( pucInvalidString6, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
214 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 6." ); in test_FreeRTOS_inet_pton4()
216 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
217 xResult = FreeRTOS_inet_pton4( pucInvalidString7, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
219 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 7." ); in test_FreeRTOS_inet_pton4()
221 ulIPAddress = 0xABABABAB; in test_FreeRTOS_inet_pton4()
222 xResult = FreeRTOS_inet_pton4( pucInvalidString8, &ulIPAddress ); in test_FreeRTOS_inet_pton4()
224 TEST_ASSERT_EQUAL_MESSAGE( ulInValidResponse, ulIPAddress, "Incorrectly converted string 8." ); in test_FreeRTOS_inet_pton4()
2282 uint32_t ulIPAddress = 0; in test_FreeRTOS_inet_ntoa_1() local
2286 pucReturn = FreeRTOS_inet_ntoa( ulIPAddress, pcBuffer ); in test_FreeRTOS_inet_ntoa_1()
2298 uint32_t ulIPAddress = 0xAAAAAAAA; in test_FreeRTOS_inet_ntoa_2() local
2302 pucReturn = FreeRTOS_inet_ntoa( ulIPAddress, pcBuffer ); in test_FreeRTOS_inet_ntoa_2()
2314 uint32_t ulIPAddress = 0xFFFFFFFF; in test_FreeRTOS_inet_ntoa_3() local
2318 pucReturn = FreeRTOS_inet_ntoa( ulIPAddress, pcBuffer ); in test_FreeRTOS_inet_ntoa_3()