Searched refs:net_ethaddr (Results 1 – 8 of 8) sorted by relevance
/external/u-boot/net/ |
D | link_local.c | 151 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 163 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 174 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 270 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0) in link_local_receive_arp() 283 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0) { in link_local_receive_arp() 317 arp_raw_request(ip, net_ethaddr, ip); in link_local_receive_arp()
|
D | rarp.c | 88 memcpy(&rarp->ar_data[0], net_ethaddr, 6); /* source ET addr */ in rarp_request() 91 memcpy(&rarp->ar_data[10], net_ethaddr, 6); in rarp_request()
|
D | bootp.c | 135 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0) in check_reply_packet() 782 memcpy(bp->bp_chaddr, net_ethaddr, 6); in bootp_request() 797 bootp_id = ((u32)net_ethaddr[2] << 24) in bootp_request() 798 | ((u32)net_ethaddr[3] << 16) in bootp_request() 799 | ((u32)net_ethaddr[4] << 8) in bootp_request() 800 | (u32)net_ethaddr[5]; in bootp_request() 1004 memcpy(bp->bp_chaddr, net_ethaddr, 6); in dhcp_send_request_packet()
|
D | arp.c | 74 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN); /* source ET addr */ in arp_raw_request() 169 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN); in arp_receive()
|
D | cdp.c | 126 memcpy(et->et_src, net_ethaddr, 6); in cdp_send_trigger() 146 sprintf(buf, CONFIG_CDP_DEVICE_ID_PREFIX "%pm", net_ethaddr); in cdp_send_trigger()
|
D | net.c | 141 u8 net_ethaddr[6]; variable 356 memcpy(net_ethaddr, eth_get_ethaddr(), 6); in net_init_loop() 1370 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) { in net_check_prereq() 1420 memcpy(et->et_src, net_ethaddr, 6); in net_set_ether() 1440 memcpy(et->et_src, net_ethaddr, 6); in net_update_ether()
|
D | wol.c | 35 net_ethaddr, ARP_HLEN) != 0) in wol_check_magic()
|
/external/u-boot/include/ |
D | net.h | 519 extern u8 net_ethaddr[ARP_HLEN]; /* Our ethernet address */
|