Symbol: ether_addr
lib/libc/net/ethers.c
141
ether_hostton(const char *hostname, struct ether_addr *e)
lib/libc/net/ethers.c
194
ether_line(const char *l, struct ether_addr *e, char *hostname)
lib/libc/net/ethers.c
47
ether_ntoa(const struct ether_addr *e)
lib/libc/net/ethers.c
60
struct ether_addr *
lib/libc/net/ethers.c
63
static struct ether_addr n;
lib/libc/net/ethers.c
82
ether_ntohost(char *hostname, const struct ether_addr *e)
lib/libc/net/ethers.c
86
struct ether_addr try;
sbin/brconfig/brconfig.c
468
struct ether_addr ea;
sbin/brconfig/brconfig.c
669
struct ether_addr *ea;
sbin/brconfig/brconfig.c
690
struct ether_addr *ea;
sbin/ifconfig/ieee80211.c
283
struct ether_addr *ea;
sbin/ifconfig/ieee80211.c
602
struct ether_addr ea;
sbin/ifconfig/ieee80211.c
829
, ether_ntoa((const struct ether_addr *) sr->isr_bssid)
sbin/route/rtutil.c
756
return ether_ntoa((const struct ether_addr *)lla);
sys/arch/alpha/stand/common/bbinfo.h
49
u_int8_t ether_addr[6];
sys/arch/alpha/stand/netboot/if_prom.c
145
ether_sprintf(netbbinfo.ether_addr));
sys/arch/alpha/stand/netboot/if_prom.c
182
memcpy(desc->myea, netbbinfo.ether_addr, sizeof desc->myea);
sys/arch/alpha/stand/netboot/if_prom.c
193
memcpy(desc->myea, netbbinfo.ether_addr, sizeof desc->myea);
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
129
ether_addr = &_ether_addr;
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
131
ether_addr = ether_aton(addr);
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
132
if (ether_addr == NULL)
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
148
ether_addr->ether_addr_octet[0],
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
149
ether_addr->ether_addr_octet[1],
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
150
ether_addr->ether_addr_octet[2],
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
151
ether_addr->ether_addr_octet[3],
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
152
ether_addr->ether_addr_octet[4],
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
153
ether_addr->ether_addr_octet[5]);
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
162
ether_ntoa(ether_addr), host ? host : addr, force);
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
216
netbbinfop->ether_addr[i] =
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
217
ether_addr->ether_addr_octet[i];
sys/arch/alpha/stand/setnetbootinfo/setnetbootinfo.c
55
struct ether_addr *ether_addr, _ether_addr;
sys/arch/evbmips/stand/sbmips/common/bbinfo.h
49
u_int8_t ether_addr[6];
sys/arch/ews4800mips/include/sbdvar.h
114
_SBD_OPS_SET(m, ether_addr); \
sys/arch/ews4800mips/include/sbdvar.h
81
void (*ether_addr)(uint8_t *);
sys/arch/ews4800mips/sbd/if_iee_sbdio.c
114
(*platform.ether_addr)(eaddr);
sys/arch/ews4800mips/sbd/if_le_sbdio.c
136
(*platform.ether_addr)(sc->sc_enaddr);
sys/arch/sbmips/stand/common/bbinfo.h
49
u_int8_t ether_addr[6];
sys/arch/sun2/dev/if_ecreg.h
43
struct ether_addr ec_arom; /* address ROM */
sys/arch/sun2/dev/if_ecreg.h
44
uint8_t ec_pad2[0x200 - sizeof(struct ether_addr)];
sys/arch/sun2/dev/if_ecreg.h
45
struct ether_addr ec_aram; /* address RAM */
sys/arch/sun2/dev/if_ecreg.h
46
uint8_t ec_pad3[0x200 - sizeof(struct ether_addr)];
sys/dev/ic/bwfmreg.h
789
struct ether_addr addr;
sys/dev/ic/wireg.h
447
struct ether_addr wi_mcast[16];
sys/dev/ic/wireg.h
454
struct ether_addr wi_bssid;
sys/dev/pci/if_aq.c
1401
struct ether_addr sc_enaddr;
sys/dev/pci/if_bge.c
6527
bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/pci/if_bge.c
6532
if (ether_getaddr(sc->bge_dev, ether_addr)) {
sys/dev/pci/if_bge.c
6540
bge_get_eaddr_mem(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/pci/if_bge.c
6546
ether_addr[0] = (uint8_t)(mac_addr >> 8);
sys/dev/pci/if_bge.c
6547
ether_addr[1] = (uint8_t)mac_addr;
sys/dev/pci/if_bge.c
6549
ether_addr[2] = (uint8_t)(mac_addr >> 24);
sys/dev/pci/if_bge.c
6550
ether_addr[3] = (uint8_t)(mac_addr >> 16);
sys/dev/pci/if_bge.c
6551
ether_addr[4] = (uint8_t)(mac_addr >> 8);
sys/dev/pci/if_bge.c
6552
ether_addr[5] = (uint8_t)mac_addr;
sys/dev/pci/if_bge.c
6559
bge_get_eaddr_nvram(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/pci/if_bge.c
6566
return (bge_read_nvram(sc, ether_addr, mac_offset + 2,
sys/dev/pci/if_bge.c
6571
bge_get_eaddr_eeprom(struct bge_softc *sc, uint8_t ether_addr[])
sys/dev/pci/if_bge.c
6577
return (bge_read_eeprom(sc, ether_addr, BGE_EE_MAC_OFFSET + 2,
sys/dev/pci/if_ti.c
1074
ti_add_mcast(struct ti_softc *sc, struct ether_addr *addr)
sys/dev/pci/if_ti.c
1102
ti_del_mcast(struct ti_softc *sc, struct ether_addr *addr)
sys/dev/pci/if_ti.c
174
static void ti_add_mcast(struct ti_softc *, struct ether_addr *);
sys/dev/pci/if_ti.c
175
static void ti_del_mcast(struct ti_softc *, struct ether_addr *);
sys/dev/pci/if_tireg.h
1071
struct ether_addr mc_addr;
sys/dev/pci/ixgbe/if_sriov.c
129
return (bcmp(mac, vf->ether_addr, ETHER_ADDR_LEN) != 0);
sys/dev/pci/ixgbe/if_sriov.c
378
if (ixgbe_validate_mac_addr(vf->ether_addr) == 0) {
sys/dev/pci/ixgbe/if_sriov.c
379
ixgbe_set_rar(&sc->hw, vf->rar_index, vf->ether_addr,
sys/dev/pci/ixgbe/if_sriov.c
391
bcopy(vf->ether_addr, &resp[1], ETHER_ADDR_LEN);
sys/dev/pci/ixgbe/if_sriov.c
415
bcopy(mac, vf->ether_addr, ETHER_ADDR_LEN);
sys/dev/pci/ixgbe/if_sriov.c
417
ixgbe_set_rar(&sc->hw, vf->rar_index, vf->ether_addr, vf->pool,
sys/dev/pci/ixgbe/if_sriov.c
794
if (ixgbe_validate_mac_addr(vf->ether_addr) == 0) {
sys/dev/pci/ixgbe/if_sriov.c
796
vf->ether_addr, vf->pool, TRUE);
sys/dev/pci/ixgbe/if_sriov.c
906
bcopy(mac, vf->ether_addr, ETHER_ADDR_LEN);
sys/dev/pci/ixgbe/ixgbe.h
452
uint8_t ether_addr[ETHER_ADDR_LEN];
sys/dev/qbus/if_il.c
106
struct ether_addr isu_maddrs[63]; /* multicast addrs */
sys/dev/qbus/if_il.c
339
register struct ether_addr *ep = sc->sc_maddrs;
sys/dev/qbus/if_il.c
355
*ep++ = *(struct ether_addr *)enm->enm_addrlo;
sys/dev/qbus/if_il.c
363
IL_WCSR(IL_BCR, i * sizeof(struct ether_addr));
sys/net/if_ether.h
431
char * ether_ntoa(const struct ether_addr *);
sys/net/if_ether.h
432
struct ether_addr *
sys/net/if_ether.h
434
int ether_ntohost(char *, const struct ether_addr *);
sys/net/if_ether.h
435
int ether_hostton(const char *, struct ether_addr *);
sys/net/if_ether.h
436
int ether_line(const char *, struct ether_addr *, char *);
sys/net/if_ethersubr.c
168
CTASSERT(sizeof(struct ether_addr) == 6);
sys/net/if_pppoe.c
181
struct ether_addr sc_dest; /* hardware address of concentrator */
usr.bin/getent/getent.c
207
struct ether_addr ea, *eap;
usr.sbin/bootp/common/lookup.c
44
static struct ether_addr ea;
usr.sbin/bootp/common/trylook.c
19
extern char *ether_ntoa(struct ether_addr *);
usr.sbin/btpand/bnep.c
370
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/bnep.c
396
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/bnep.c
469
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/bnep.c
491
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/bnep.c
562
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/bnep.c
584
ether_ntoa((struct ether_addr *)chan->raddr), rsp);
usr.sbin/btpand/tap.c
109
ifr.ifr_name, ether_ntoa((struct ether_addr *)LLADDR(sdl)));
usr.sbin/isibootd/isibootd.c
195
if (ether_ntohost(clientname, (struct ether_addr *)fp->src)) {
usr.sbin/ndbootd/ndbootd.c
572
if (ether_ntohost(hostname_buffer, (struct ether_addr *) ether_packet->ether_shost)) {
usr.sbin/npf/npfctl/npf_bpf_comp.c
689
npfctl_bpf_ether(npf_bpf_t *ctx, unsigned opts, struct ether_addr *ether_addr)
usr.sbin/npf/npfctl/npf_bpf_comp.c
699
memcpy(&mac_word, ether_addr, sizeof(mac_word));
usr.sbin/npf/npfctl/npf_bpf_comp.c
703
memcpy(&mac_hword, (uint8_t *)ether_addr + sizeof(mac_word), sizeof(mac_hword));
usr.sbin/npf/npfctl/npf_build.c
349
struct ether_addr *eth = data;
usr.sbin/npf/npfctl/npf_data.c
771
struct ether_addr *ether;
usr.sbin/npf/npfctl/npf_data.c
774
ether = (struct ether_addr *)addr;
usr.sbin/npf/npfctl/npf_show.c
298
const struct ether_addr* addr = (const struct ether_addr *)nwords;
usr.sbin/npf/npfctl/npfctl.h
228
void npfctl_bpf_ether(npf_bpf_t *, unsigned, struct ether_addr *);
usr.sbin/rarpd/rarpd.c
585
if (ether_ntohost(ename, (struct ether_addr *)&ep->ether_shost) != 0) {
usr.sbin/rarpd/rarpd.c
587
ether_ntoa((struct ether_addr *)&ep->ether_shost));
usr.sbin/rarpd/rarpd.c
831
ether_ntoa((struct ether_addr *)ar_tha(ap)), hp->h_name);
usr.sbin/rarpd/rarpd.c
834
ether_ntoa((struct ether_addr *)ar_tha(ap)), hp->h_name);
usr.sbin/wakeonlan/wakeonlan.c
144
get_ether(char const *text, struct ether_addr *addr)
usr.sbin/wakeonlan/wakeonlan.c
146
struct ether_addr *paddr;
usr.sbin/wakeonlan/wakeonlan.c
159
send_wakeup(int bpf, struct ether_addr const *addr)
usr.sbin/wakeonlan/wakeonlan.c
71
static int get_ether(char const *, struct ether_addr *);
usr.sbin/wakeonlan/wakeonlan.c
72
static int send_wakeup(int, struct ether_addr const *);
usr.sbin/wakeonlan/wakeonlan.c
85
struct ether_addr macaddr;
usr.sbin/wiconfig/wiconfig.c
413
struct ether_addr *addr;
usr.sbin/wlanctl/wlanctl.c
151
struct ether_addr ea;
usr.sbin/ypserv/stdethers/stdethers.c
54
struct ether_addr eth_addr;