HomeSort by relevance Sort by last modified time
    Searched defs:oui (Results 126 - 137 of 137) sorted by null

1 2 3 4 56

  /system/connectivity/shill/wifi/
wifi_endpoint.cc 168 for (auto oui : vendor_information_.oui_set) {
171 oui >> 16, (oui >> 8) & 0xff, oui & 0xff));
558 // | OUI | OUI Type | Data |
562 LOG(ERROR) << __func__ << ": no room in IE for OUI and type field.";
565 uint32_t oui = (*ie << 16) | (*(ie + 1) << 8) | *(ie + 2); local
569 if (oui == IEEE_80211::kOUIVendorMicrosoft &&
603 } else if (oui == IEEE_80211::kOUIVendorMicrosoft &
    [all...]
  /external/tcpdump/
addrtoname.c 66 #include "oui.h"
475 int oui; local
498 oui = EXTRACT_24BITS(ep);
508 snprintf(cp, BUFSIZE - (2 + 5*3), " (oui %s)",
509 tok2str(oui_values, "Unknown", oui));
print-slow.c 32 #include "oui.h"
89 uint8_t oui[3]; member in struct:slow_oam_info_t
533 ND_PRINT((ndo, "\n\t OUI %s (0x%06x), Vendor-Private 0x%08x",
535 EXTRACT_24BITS(&tlv.slow_oam_info->oui)),
536 EXTRACT_24BITS(&tlv.slow_oam_info->oui),
print-lldp.c 35 #include "oui.h"
1380 u_int oui, tlen, hexdump, tlv_type, tlv_len; local
    [all...]
  /external/wpa_supplicant_8/src/ap/
gas_serv.c 1099 u32 oui; local
1108 oui = WPA_GET_BE24(pos);
1110 if (oui != OUI_WFA) {
1111 wpa_printf(MSG_DEBUG, "ANQP: Unsupported vendor OUI %06x",
1112 oui);
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
eapol.h 150 uint8 oui[3]; member in struct:__anon29625
p2p.h 34 /* WiFi P2P OUI values */
35 #define P2P_OUI WFA_OUI /* WiFi P2P OUI */
44 uint8 OUI[3]; /* WiFi P2P specific OUI: P2P_OUI */
254 uint8 OUI[3]; /* WFA OUI: 0x0050F2 */
330 uint8 OUI[3]; /* OUI - P2P_OUI */
331 uint8 type; /* OUI Type - P2P_VER */
332 uint8 subtype; /* OUI Subtype - P2P_AF_* *
354 uint8 oui[3]; \/* P2P_OUI *\/ member in struct:wifi_p2p_pub_act_frame
506 uint8 oui[3]; \/* WFA OUI: 0x0050F2 *\/ member in struct:wifi_p2psd_qreq_frame
534 uint8 oui[3]; \/* WFA OUI: 0x0050F2 *\/ member in struct:wifi_p2psd_qresp_frame
    [all...]
802.11.h 90 #define DOT11_OUI_LEN 3 /* d11 OUI length */
95 uint8 oui[DOT11_OUI_LEN]; /* RFC1042: 0x00 0x00 0x00 member in struct:dot11_llc_snap_header
161 * category+OUI+vendor specific content ( this can be variable)
165 uint8 OUI[3];
175 uint8 OUI[3];
357 uint8 oui[3]; /* Proprietary OUI, BRCM_PROP_OUI */ member in struct:dot11_brcm_extch
626 #define WME_OUI "\x00\x50\xf2" /* WME OUI */
652 uint8 oui[3]; member in struct:wme_ie
670 uint8 oui[3] member in struct:wme_param_ie
2732 uint8 oui[3]; \/* Proprietary OUI, BRCM_OUI *\/ member in struct:brcm_ie
2761 uchar oui [3]; member in struct:vndr_ie
2776 uchar oui[3]; member in struct:member_of_brcm_prop_ie
2789 uchar oui[3]; member in struct:relmcast_brcm_prop_ie
2826 uint8 oui[3]; \/* Proprietary OUI, BRCM_PROP_OUI *\/ member in struct:ht_prop_cap_ie
2946 uint8 oui[3]; \/* Proprietary OUI, BRCM_PROP_OUI *\/ member in struct:ht_prop_add_ie
3200 uint8 oui[3]; \/* Proprietary OUI, BRCM_PROP_OUI *\/ member in struct:vht_features_ie_hdr
3569 uint8 oui[3]; member in struct:hs20_ie
    [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.h 222 * 00-50-f2:1 (OUI:OUI type)
238 u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */ member in struct:wpa_ie_hdr
ieee802_11_defs.h 594 u8 oui[3]; member in struct:ieee80211_mgmt::__anon27442::__anon27451::__anon27452::__anon27462
922 u8 oui[3]; /* 00:50:f2 */ member in struct:wmm_information_element
960 u8 oui[3]; /* 00:50:f2 */ member in struct:wmm_parameter_element
974 u8 oui[3]; \/* 00:50:f2 *\/ member in struct:wmm_tspec_element
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_hal.h 75 typedef byte oui[3]; typedef
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiStateMachine.java 1382 String oui = mContext.getResources().getString(R.string.config_wifi_random_mac_oui); local
    [all...]

Completed in 397 milliseconds

1 2 3 4 56