Home
last modified time | relevance | path

Searched refs:ea (Results 1 – 9 of 9) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
Dethernet.h105 #define ETHER_FILL_MCAST_ADDR_FROM_IP(ea, mgrp_ip) { \ argument
106 ((uint8 *)ea)[0] = 0x01; \
107 ((uint8 *)ea)[1] = 0x00; \
108 ((uint8 *)ea)[2] = 0x5e; \
109 ((uint8 *)ea)[3] = ((mgrp_ip) >> 16) & 0x7f; \
110 ((uint8 *)ea)[4] = ((mgrp_ip) >> 8) & 0xff; \
111 ((uint8 *)ea)[5] = ((mgrp_ip) >> 0) & 0xff; \
136 #define ETHER_SET_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] | 2)) argument
137 #define ETHER_IS_LOCALADDR(ea) (((uint8 *)(ea))[0] & 2) argument
138 #define ETHER_CLR_LOCALADDR(ea) (((uint8 *)(ea))[0] = (((uint8 *)(ea))[0] & 0xfd)) argument
[all …]
D802.11.h2778 struct ether_addr ea; /* Device Primary MAC Adrress */ member
2791 struct ether_addr ea; /* The ack sender's MAC Adrress */ member
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h282 extern int ether_isbcast(const void *ea);
283 extern int ether_isnulladdr(const void *ea);
372 extern char *bcm_ether_ntoa(const struct ether_addr *ea, char *buf);
373 extern int bcm_ether_atoe(const char *p, struct ether_addr *ea);
712 #define ETHERP_TO_MACF(ea) ((struct ether_addr *) (ea))->octet[0], \ argument
713 ((struct ether_addr *) (ea))->octet[1], \
714 ((struct ether_addr *) (ea))->octet[2], \
715 ((struct ether_addr *) (ea))->octet[3], \
716 ((struct ether_addr *) (ea))->octet[4], \
717 ((struct ether_addr *) (ea))->octet[5]
[all …]
Dwlioctl.h901 struct ether_addr ea; /* per station */ member
1056 struct ether_addr ea; /* Node ether address */ member
1094 struct ether_addr ea; member
1105 struct ether_addr ea; /* Station address */ member
1151 struct ether_addr ea; member
1170 struct ether_addr ea[1]; /* variable length array of MAC addresses */ member
1217 struct ether_addr ea; /* MAC Address */ member
3630 struct ether_addr ea; /* Station address */ member
3660 struct ether_addr ea; /* Station address */ member
3718 struct ether_addr ea; /* Station address */ member
[all …]
/hardware/interfaces/broadcastradio/1.0/default/
DUtils.cpp162 config->ext.fm.ea = halConfig->fm.ea; in convertBandConfigFromHal()
216 halConfig->fm.ea = config->ext.fm.ea; in convertBandConfigToHal()
/hardware/libhardware/modules/radio/
Dradio_hw.c65 .ea = true,
348 tuner->config.fm.ea); in callback_thread_loop()
448 ea_state, tuner->config.type, tuner->config.fm.ea); in callback_thread_loop()
454 } else if (tuner->config.fm.ea) { in callback_thread_loop()
460 if (tuner->config.fm.ea) { in callback_thread_loop()
/hardware/interfaces/broadcastradio/1.1/default/
DBroadcastRadio.cpp190 dst.ext.fm.ea = true; in getAmFmBands()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c1009 bcm_ether_atoe(const char *p, struct ether_addr *ea) in bcm_ether_atoe() argument
1015 ea->octet[i++] = (char) bcm_strtoul(p, &ep, 16); in bcm_ether_atoe()
1056 bcm_ether_ntoa(const struct ether_addr *ea, char *buf) in bcm_ether_ntoa() argument
1063 const uint8 *octet = ea->octet; in bcm_ether_ntoa()
/hardware/interfaces/broadcastradio/1.0/
Dtypes.hal91 bool ea;