Lines Matching refs:ulAddressToLookup

98     static eARPLookupResult_t prvCacheLookup( uint32_t ulAddressToLookup,
485 BaseType_t xIsIPInARPCache( uint32_t ulAddressToLookup ) in xIsIPInARPCache() argument
494 if( xARPCache[ x ].ulIPAddress == ulAddressToLookup ) in xIsIPInARPCache()
960 uint32_t ulAddressToLookup; in eARPGetCacheEntry() local
968 ulAddressToLookup = *pulIPAddress; in eARPGetCacheEntry()
969 pxEndPoint = FreeRTOS_FindEndPointOnIP_IPv4( ulAddressToLookup, 0 ); in eARPGetCacheEntry()
971 if( xIsIPv4Multicast( ulAddressToLookup ) != 0 ) in eARPGetCacheEntry()
974 vSetMultiCastIPv4MacAddress( ulAddressToLookup, pxMACAddress ); in eARPGetCacheEntry()
992 …else if( ( FreeRTOS_htonl( ulAddressToLookup ) & 0xffU ) == 0xffU ) /* Is this a broadcast address… in eARPGetCacheEntry()
996 pxEndPoint = FreeRTOS_FindEndPointOnNetMask( ulAddressToLookup, 4 ); in eARPGetCacheEntry()
1027 uint32_t ulAddressToLookup = *( pulIPAddress ); in eARPGetCacheEntryGateWay() local
1033 pxEndPoint = FreeRTOS_FindEndPointOnNetMask( ulAddressToLookup, 4 ); in eARPGetCacheEntryGateWay()
1039 eReturn = prvCacheLookup( ulAddressToLookup, pxMACAddress, ppxEndPoint ); in eARPGetCacheEntryGateWay()
1057 ulAddressToLookup = ( *ppxEndPoint )->ipv4_settings.ulGatewayAddress; in eARPGetCacheEntryGateWay()
1061 ulAddressToLookup = *pulIPAddress; in eARPGetCacheEntryGateWay()
1069 ulAddressToLookup = *pulIPAddress; in eARPGetCacheEntryGateWay()
1077 if( ulAddressToLookup == 0U ) in eARPGetCacheEntryGateWay()
1085 eReturn = prvCacheLookup( ulAddressToLookup, pxMACAddress, ppxEndPoint ); in eARPGetCacheEntryGateWay()
1087 if( ( eReturn != eARPCacheHit ) || ( ulOrginal != ulAddressToLookup ) ) in eARPGetCacheEntryGateWay()
1092 ( unsigned ) FreeRTOS_ntohl( ulAddressToLookup ) ) ); in eARPGetCacheEntryGateWay()
1096 *pulIPAddress = ulAddressToLookup; in eARPGetCacheEntryGateWay()
1117 static eARPLookupResult_t prvCacheLookup( uint32_t ulAddressToLookup, in prvCacheLookup() argument
1129 if( xARPCache[ x ].ulIPAddress == ulAddressToLookup ) in prvCacheLookup()