HomeSort by relevance Sort by last modified time
    Searched defs:macaddr (Results 1 - 14 of 14) sorted by null

  /hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 75 } else if (os_strcasecmp(cmd, "MACADDR") == 0) {
76 u8 macaddr[ETH_ALEN] = {}; local
78 ret = linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname, macaddr);
81 "Macaddr = " MACSTR "\n", MAC2STR(macaddr));
  /external/qemu/slirp/
bootp.c 36 uint8_t macaddr[6]; member in struct:__anon13779
53 const uint8_t *macaddr)
60 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
72 const uint8_t *macaddr)
81 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) {
89 static BOOTPClient *find_addr(struct in_addr *paddr, const uint8_t *macaddr)
95 if (!memcmp(macaddr, bootp_clients[i].macaddr, 6)
    [all...]
  /external/qemu/slirp-android/
bootp.c 37 uint8_t macaddr[6]; member in struct:__anon13787
54 const uint8_t *macaddr)
61 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6))
75 const uint8_t *macaddr)
84 if (!bc->allocated || !memcmp(macaddr, bc->macaddr, 6)) {
92 static BOOTPClient *find_addr(SockAddress *paddr, const uint8_t *macaddr)
98 if (!memcmp(macaddr, bootp_clients[i].macaddr, 6)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_nl80211.c 96 } else if (os_strcasecmp(cmd, "MACADDR") == 0) {
97 u8 macaddr[ETH_ALEN] = {}; local
99 ret = linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname, macaddr);
102 "Macaddr = " MACSTR "\n", MAC2STR(macaddr));
  /external/qemu/include/net/
net.h 73 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6]);
87 uint8_t macaddr[6]; member in struct:NICInfo
139 void qdev_get_macaddr(DeviceState *dev, uint8_t *macaddr);
  /external/qemu/hw/net/
smc91c111.c 47 uint8_t macaddr[6]; member in struct:__anon13365
57 /* busdev, vc, macaddr and mmio_index are linked to the host state and
87 /* macaddr, mmio_index omitted intentionally */
551 return s->macaddr[offset - 4];
785 qdev_get_macaddr(&dev->qdev, s->macaddr);
792 qemu_format_nic_info_str(s->vc, s->macaddr);
ne2000.c 146 uint8_t macaddr[6]; member in struct:NE2000State
155 memcpy(s->mem, s->macaddr, 6);
758 memcpy(s->macaddr, nd->macaddr, 6);
766 qemu_format_nic_info_str(s->vc, s->macaddr);
824 qdev_get_macaddr(&d->dev.qdev, s->macaddr);
830 qemu_format_nic_info_str(s->vc, s->macaddr);
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 509 u8 macaddr[ETH_ALEN]; local
544 if (hwaddr_aton(val, macaddr)) {
557 if (hwaddr_aton2(val, macaddr) > 0) {
565 val, MAC2STR(macaddr));
587 macaddr, msg, type)
    [all...]
  /external/qemu/net/
net-android.c 169 static int parse_macaddr(uint8_t *macaddr, const char *p)
179 macaddr[3] = (offset & 0xFF0000) >> 16;
180 macaddr[4] = (offset & 0xFF00) >> 8;
181 macaddr[5] = offset & 0xFF;
185 macaddr[i] = strtol(p, (char **)&p, 16);
312 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
315 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
317 macaddr[0], macaddr[1], macaddr[2]
2188 uint8_t *macaddr; local
    [all...]
net.c 161 static int parse_macaddr(uint8_t *macaddr, const char *p)
171 macaddr[3] = (offset & 0xFF0000) >> 16;
172 macaddr[4] = (offset & 0xFF00) >> 8;
173 macaddr[5] = offset & 0xFF;
177 macaddr[i] = strtol(p, (char **)&p, 16);
304 void qemu_format_nic_info_str(VLANClientState *vc, uint8_t macaddr[6])
307 "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
309 macaddr[0], macaddr[1], macaddr[2]
2109 uint8_t *macaddr; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
ap_config.h 21 typedef u8 macaddr[ETH_ALEN]; typedef
24 macaddr addr;
337 macaddr bssid;
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211.c 803 u8 *macaddr; member in struct:wiphy_idx_data
822 if (tb[NL80211_ATTR_MAC] && info->macaddr)
823 os_memcpy(info->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
835 .macaddr = NULL,
861 .macaddr = NULL,
886 .macaddr = bss->addr,
10288 u8 macaddr[ETH_ALEN]; member in struct:wdev_info
    [all...]
  /external/qemu/qapi-auto-generated/
qapi-types.h 2587 char * macaddr; member in struct:NetLegacyNicOptions
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 3937 struct ether_addr macaddr; member in struct:wl_pfn_bssid
    [all...]

Completed in 1986 milliseconds