Searched refs:net_ethaddr (Results 1 – 10 of 10) sorted by relevance
/u-boot/net/ |
A D | link_local.c | 154 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 166 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 177 arp_raw_request(ip, net_ethaddr, ip); in link_local_timeout() 273 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0) in link_local_receive_arp() 286 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0) { in link_local_receive_arp() 320 arp_raw_request(ip, net_ethaddr, ip); in link_local_receive_arp()
|
A D | rarp.c | 89 memcpy(&rarp->ar_data[0], net_ethaddr, 6); /* source ET addr */ in rarp_request() 92 memcpy(&rarp->ar_data[10], net_ethaddr, 6); in rarp_request()
|
A D | bootp.c | 141 else if (memcmp(bp->bp_chaddr, net_ethaddr, HWL_ETHER) != 0) in check_reply_packet() 795 memcpy(bp->bp_chaddr, net_ethaddr, 6); in bootp_request() 810 bootp_id = ((u32)net_ethaddr[2] << 24) in bootp_request() 811 | ((u32)net_ethaddr[3] << 16) in bootp_request() 812 | ((u32)net_ethaddr[4] << 8) in bootp_request() 813 | (u32)net_ethaddr[5]; in bootp_request() 1017 memcpy(bp->bp_chaddr, net_ethaddr, 6); in dhcp_send_request_packet()
|
A D | wol.c | 35 net_ethaddr, ARP_HLEN) != 0) in wol_check_magic()
|
A D | arp.c | 77 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN); /* source ET addr */ in arp_raw_request() 173 memcpy(&arp->ar_sha, net_ethaddr, ARP_HLEN); in arp_receive()
|
A 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()
|
A D | net.c | 136 u8 net_ethaddr[6]; variable 344 memcpy(net_ethaddr, eth_get_ethaddr(), 6); in net_init_loop() 1388 if (memcmp(net_ethaddr, "\0\0\0\0\0\0", 6) == 0) { in net_check_prereq() 1438 memcpy(et->et_src, net_ethaddr, 6); in net_set_ether() 1458 memcpy(et->et_src, net_ethaddr, 6); in net_update_ether()
|
/u-boot/test/dm/ |
A D | eth.c | 286 ut_asserteq_mem(eth->et_src, net_ethaddr, ARP_HLEN); in sb_check_arp_reply() 294 ut_asserteq_mem(&arp->ar_sha, net_ethaddr, ARP_HLEN); in sb_check_arp_reply() 377 ut_asserteq_mem(eth->et_src, net_ethaddr, ARP_HLEN); in sb_check_ping_reply()
|
/u-boot/drivers/net/ |
A D | sandbox.c | 227 memcpy(eth_recv->et_dest, net_ethaddr, ARP_HLEN); in sandbox_eth_recv_ping_req()
|
/u-boot/include/ |
A D | net.h | 543 extern u8 net_ethaddr[ARP_HLEN]; /* Our ethernet address */
|
Completed in 14 milliseconds