Lines Matching refs:ulIPAddress

496     uint32_t ulIPAddress, ulNetMask, ulGatewayAddress, ulDNSServerAddress;  in test_FreeRTOS_GetAddressConfiguration_HappyPath()  local
501 uint32_t * pulIPAddress = &ulIPAddress; in test_FreeRTOS_GetAddressConfiguration_HappyPath()
1087 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_HappyPath() local
1115 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_HappyPath()
1124 TEST_ASSERT_EQUAL( ulIPAddress, pxNetworkBuffer->ulIPAddress ); in test_FreeRTOS_SendPingRequest_HappyPath()
1131 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails() local
1161 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1170 TEST_ASSERT_EQUAL( ulIPAddress, pxNetworkBuffer->ulIPAddress ); in test_FreeRTOS_SendPingRequest_SendingToIPTaskFails()
1177 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_TooManyBytes() local
1187 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooManyBytes()
1195 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_TooLessBytes() local
1205 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_TooLessBytes()
1213 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers() local
1223 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NotEnoughFreeBuffers()
1231 uint32_t ulIPAddress = 0xC0AB0101; in test_FreeRTOS_SendPingRequest_NetworkBufferFailure() local
1243 xReturn = FreeRTOS_SendPingRequest( ulIPAddress, uxNumberOfBytesToSend, uxBlockTimeTicks ); in test_FreeRTOS_SendPingRequest_NetworkBufferFailure()
1784 uint32_t ulIPAddress = 0; in test_xIsIPv4Multicast_NotMultiCast() local
1786 xReturn = xIsIPv4Multicast( ulIPAddress ); in test_xIsIPv4Multicast_NotMultiCast()
1794 uint32_t ulIPAddress = FreeRTOS_htonl( 0xF0000000 ); in test_xIsIPv4Multicast_NotMultiCast2() local
1796 xReturn = xIsIPv4Multicast( ulIPAddress ); in test_xIsIPv4Multicast_NotMultiCast2()
1804 uint32_t ulIPAddress = FreeRTOS_htonl( 0xF0000000 - 1 ); in test_xIsIPv4Multicast_IsMultiCast() local
1806 xReturn = xIsIPv4Multicast( ulIPAddress ); in test_xIsIPv4Multicast_IsMultiCast()
2810 TEST_ASSERT_EQUAL( pxNetworkBuffer->ulIPAddress, pxUDPPacket->xIPHeader.ulSourceIPAddress ); in test_prvProcessIPPacket_ARPResolutionReqd_UDP()
2864 TEST_ASSERT_EQUAL( pxNetworkBuffer->ulIPAddress, pxUDPPacket->xIPHeader.ulSourceIPAddress ); in test_prvProcessIPPacket_ARPResolutionReqd_UDP1()
3019 uint32_t ulIPAddress; in test_FreeRTOS_GetIPAddress() local
3021 ulIPAddress = FreeRTOS_GetIPAddress(); in test_FreeRTOS_GetIPAddress()
3023 TEST_ASSERT_EQUAL( *ipLOCAL_IP_ADDRESS_POINTER, ulIPAddress ); in test_FreeRTOS_GetIPAddress()
3028 uint32_t ulIPAddress = 0x1234ABCD; in test_FreeRTOS_SetIPAddress() local
3030 FreeRTOS_SetIPAddress( ulIPAddress ); in test_FreeRTOS_SetIPAddress()
3032 TEST_ASSERT_EQUAL( ulIPAddress, *ipLOCAL_IP_ADDRESS_POINTER ); in test_FreeRTOS_SetIPAddress()