HomeSort by relevance Sort by last modified time
    Searched full:mac_addr (Results 51 - 75 of 87) sorted by null

1 23 4

  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
if_bridge.h 93 __u8 mac_addr[6]; member in struct:__fdb_entry
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
if_bridge.h 93 __u8 mac_addr[6]; member in struct:__fdb_entry
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.h 116 int mac_addr_a2n(unsigned char *mac_addr, char *arg);
117 void mac_addr_n2a(char *mac_addr, unsigned char *arg);
plt.h 368 int get_mac_addr(int ifc_num, unsigned char *mac_addr);
  /external/kernel-headers/original/linux/
if_bridge.h 96 __u8 mac_addr[6]; member in struct:__fdb_entry
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.c 199 if (kde.rsn_ie == NULL || kde.mac_addr == NULL ||
207 MAC2STR(kde.mac_addr));
224 wpa_supplicant_send_smk_error(sm, src_addr, kde.mac_addr,
238 os_memcpy(peerkey->addr, kde.mac_addr, ETH_ALEN);
438 MAC2STR(kde->mac_addr));
468 MAC2STR(kde->mac_addr));
497 "unacceptable cipher", MAC2STR(kde->mac_addr));
498 wpa_supplicant_send_smk_error(sm, src_addr, kde->mac_addr,
533 if (kde.mac_addr == NULL || kde.mac_addr_len < ETH_ALEN ||
543 if (os_memcmp(peerkey->addr, kde.mac_addr, ETH_ALEN) == 0 &
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.h 41 * @mac_addr: MAC address of the Credential receiver
55 u8 mac_addr[ETH_ALEN]; member in struct:wps_credential
73 * @mac_addr: Device MAC address
87 u8 mac_addr[ETH_ALEN]; member in struct:wps_device_data
248 * @mac_addr: MAC address of the Enrollee
255 int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
288 * @mac_addr: MAC address of the Enrollee
296 void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
499 const u8 *mac_addr; member in struct:wps_event_data::wps_event_er_ap
515 const u8 *mac_addr; member in struct:wps_event_data::wps_event_er_enrollee
    [all...]
wps_attr_parse.h 49 const u8 *mac_addr; /* ETH_ALEN (6) octets */ member in struct:wps_parse_attr
wps_enrollee.c 315 wpabuf_put_data(msg, wps->wps->dev.mac_addr, ETH_ALEN);
660 if (os_memcmp(wps->cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
664 ")", MAC2STR(wps->cred.mac_addr),
665 MAC2STR(wps->wps->dev.mac_addr));
761 if (os_memcmp(cred.mac_addr, wps->wps->dev.mac_addr, ETH_ALEN) !=
765 ")", MAC2STR(cred.mac_addr),
766 MAC2STR(wps->wps->dev.mac_addr));
    [all...]
wps_registrar.c 145 int (*new_psk_cb)(void *ctx, const u8 *mac_addr, const u8 *psk,
151 void (*reg_success_cb)(void *ctx, const u8 *mac_addr,
262 if (os_memcmp(dev->dev.mac_addr, addr, ETH_ALEN) == 0)
272 os_memcpy(dst->mac_addr, src->mac_addr, ETH_ALEN);
293 d = wps_device_get(reg, dev->mac_addr);
1167 static int wps_cb_new_psk(struct wps_registrar *reg, const u8 *mac_addr,
1173 return reg->new_psk_cb(reg->cb_ctx, mac_addr, psk, psk_len);
1187 static void wps_cb_reg_success(struct wps_registrar *reg, const u8 *mac_addr,
1194 reg->reg_success_cb(reg->cb_ctx, mac_addr, uuid_e, dev_pw, dev_pw_len)
    [all...]
wps_er.c 45 ev->mac_addr = sta->addr;
101 const u8 *mac_addr)
108 (mac_addr == NULL ||
109 os_memcmp(mac_addr, ap->mac_addr, ETH_ALEN) == 0))
149 evap->mac_addr = ap->mac_addr;
489 if (attr.mac_addr)
490 os_memcpy(ap->mac_addr, attr.mac_addr, ETH_ALEN)
    [all...]
wps_validate.c 562 static int wps_validate_mac_addr(const u8 *mac_addr, int mandatory)
564 if (mac_addr == NULL) {
572 if (mac_addr[0] & 0x01) {
574 "attribute value " MACSTR, MAC2STR(mac_addr));
1046 wps_validate_mac_addr(attr.mac_addr, 1) ||
1302 wps_validate_mac_addr(attr.mac_addr, 1) ||
    [all...]
wps_upnp_i.h 129 u8 mac_addr[ETH_ALEN]; /* mac addr of network i.f. we use */ member in struct:upnp_wps_device_sm
wps.c 44 os_memcpy(data->mac_addr_e, cfg->wps->dev.mac_addr, ETH_ALEN);
129 os_memcpy(data->peer_dev.mac_addr, cfg->peer_addr, ETH_ALEN);
wps_common.c 443 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
458 addr[1] = mac_addr;
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 94 static int hostapd_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
102 MACSTR, MAC2STR(mac_addr));
115 os_memcpy(p->addr, mac_addr, ETH_ALEN);
133 fprintf(f, MACSTR " %s\n", MAC2STR(mac_addr), hex);
167 uuid, MAC2STR(dev->mac_addr), dev->device_name,
184 t.sec, uuid, MAC2STR(dev->mac_addr), dev->device_name,
211 static void hostapd_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
221 MAC2STR(mac_addr), uuid);
224 mac_addr, uuid_e);
422 MAC2STR(cred->mac_addr));
    [all...]
hostapd.h 163 void (*wps_reg_success_cb)(void *ctx, const u8 *mac_addr,
171 void (*sta_authorized_cb)(void *ctx, const u8 *mac_addr,
  /external/wpa_supplicant_8/wpa_supplicant/
notify.c 577 const u8 *mac_addr, int authorized,
581 wpas_notify_ap_sta_authorized(wpa_s, mac_addr, p2p_dev_addr);
583 wpas_notify_ap_sta_deauthorized(wpa_s, mac_addr);
notify.h 84 const u8 *mac_addr, int authorized,
wps_supplicant.c 164 bss = wpa_bss_get(wpa_s, cred->mac_addr, ssid->ssid, ssid->ssid_len);
263 MAC2STR(cred->mac_addr));
605 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
640 uuid_str, MAC2STR(enrollee->mac_addr), enrollee->m1_received,
656 uuid_str, MAC2STR(enrollee->mac_addr));
1095 static int wpas_wps_new_psk_cb(void *ctx, const u8 *mac_addr, const u8 *psk,
1099 "STA " MACSTR, MAC2STR(mac_addr));
1119 uuid, MAC2STR(dev->mac_addr), dev->device_name,
    [all...]
ap.c 362 static void ap_sta_authorized_cb(void *ctx, const u8 *mac_addr,
365 wpas_notify_sta_authorized(ctx, mac_addr, authorized, p2p_dev_addr);
403 static void ap_wps_reg_success_cb(void *ctx, const u8 *mac_addr,
408 wpas_p2p_wps_success(wpa_s, mac_addr, 1);
  /bionic/libc/kernel/common/linux/
if_bridge.h 110 __u8 mac_addr[6]; member in struct:__fdb_entry
  /external/libppp/src/
radius.c 900 char *mac_addr; local
1044 if ((mac_addr = getenv("HISMACADDR")) != NULL &&
1045 rad_put_string(r->cx.rad, RAD_CALLING_STATION_ID, mac_addr) != 0) {
1102 char *mac_addr; local
    [all...]
  /external/kernel-headers/original/asm-mips/ip32/
mace.h 116 volatile unsigned long mac_addr; member in struct:mace_ethernet
  /external/qemu/
savevm.c 100 uint8_t *mac_addr)
104 memcpy(buf + 6, mac_addr, 6); /* source MAC addr */
113 memcpy(buf + 22, mac_addr, 6); /* source hw addr */
115 memcpy(buf + 32, mac_addr, 6); /* target hw addr */
    [all...]

Completed in 2185 milliseconds

1 23 4