HomeSort by relevance Sort by last modified time
    Searched refs:bssid (Results 226 - 250 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/wpa_supplicant_8/src/drivers/
driver_wired.c 409 static int wpa_driver_wired_get_bssid(void *priv, u8 *bssid)
411 /* Report PAE group address as the "BSSID" for wired connection. */
412 os_memcpy(bssid, pae_group_addr, ETH_ALEN);
driver_hostap.c 80 event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
1046 memcpy(mgmt.bssid, own_addr, ETH_ALEN);
1084 memcpy(mgmt.bssid, own_addr, ETH_ALEN);
driver_nl80211_monitor.c 59 event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
802.11.h 147 struct ether_addr bssid; /* receiver address, STA in AP */ member in struct:dot11_ps_poll_frame
156 struct ether_addr bssid; /* transmitter address, STA in AP */ member in struct:dot11_cf_end_frame
233 struct ether_addr bssid; /* BSS ID */ member in struct:dot11_management_header
2266 struct ether_addr bssid; member in struct:dot11_rmreq_bcn
2279 struct ether_addr bssid; member in struct:dot11_rmrep_bcn
2403 struct ether_addr bssid; member in struct:dot11_rmrep_frmentry
2532 struct ether_addr bssid; member in struct:dot11_neighbor_rep_ie
3373 struct ether_addr bssid; member in struct:link_id_ie
    [all...]
  /system/connectivity/shill/test-rpc-proxy/
proxy_rpc_server.cc 364 const std::string& bssid(params_in[0]);
369 return shill_wifi_client->RequestRoam(interface_name, bssid);
  /system/connectivity/shill/wifi/
wifi_unittest.cc 850 string bssid; local
875 string bssid; local
3871 string bssid; member in struct:shill::BSS
    [all...]
wifi_service.h 82 // wifi_<MAC>_<BSSID>_<mode_string>_<security_string>
107 const std::string& bssid() const { return bssid_; } function in class:shill::WiFiService
wifi_service_unittest.cc 121 WiFiEndpoint* MakeEndpoint(const string& ssid, const string& bssid,
125 nullptr, wifi(), ssid, bssid, WPASupplicant::kNetworkModeInfrastructure,
128 WiFiEndpoint* MakeOpenEndpoint(const string& ssid, const string& bssid,
131 nullptr, wifi(), ssid, bssid, WPASupplicant::kNetworkModeInfrastructure,
136 const string& bssid,
140 nullptr, wifi, ssid, bssid, WPASupplicant::kNetworkModeInfrastructure,
    [all...]
  /external/wpa_supplicant_8/src/ap/
wmm.c 145 os_memcpy(m->bssid, hapd->own_addr, ETH_ALEN);
wpa_auth_ft.c 944 void wpa_ft_process_auth(struct wpa_state_machine *sm, const u8 *bssid,
946 void (*cb)(void *ctx, const u8 *dst, const u8 *bssid,
963 " BSSID=" MACSTR " transaction=%d",
964 MAC2STR(sm->addr), MAC2STR(bssid), auth_transaction);
980 cb(ctx, sm->addr, bssid, auth_transaction + 1, status,
1210 static void wpa_ft_rrb_rx_request_cb(void *ctx, const u8 *dst, const u8 *bssid,
    [all...]
hostapd.c 499 * hostapd_validate_bssid_configuration - Validate BSSID configuration
518 /* Generate BSSID mask that is large enough to cover the BSSIDs. */
527 if (is_zero_ether_addr(iface->conf->bss[j]->bssid)) {
535 iface->conf->bss[j]->bssid[i] ^
559 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
573 wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
581 wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
600 if (hostapd_mac_comp(conf->bss[i]->bssid, a) == 0) {
913 if (!is_zero_ether_addr(conf->bssid)) {
914 /* Allocate the configured BSSID. *
    [all...]
ap_config.h 386 macaddr bssid; member in struct:hostapd_bss_config
  /external/wpa_supplicant_8/src/p2p/
p2p_build.c 279 void p2p_buf_add_group_bssid(struct wpabuf *buf, const u8 *bssid)
281 /* P2P Group BSSID */
284 wpabuf_put_data(buf, bssid, ETH_ALEN);
285 wpa_printf(MSG_DEBUG, "P2P: * P2P Group BSSID " MACSTR,
286 MAC2STR(bssid));
p2p_i.h 165 u8 bssid[ETH_ALEN]; member in struct:p2p_pending_action_tx
763 void p2p_buf_add_group_bssid(struct wpabuf *buf, const u8 *bssid);
882 const u8 *src, const u8 *bssid, const u8 *buf,
  /external/wpa_supplicant_8/src/wps/
wps_common.c 781 const u8 *bssid, int freq)
807 (bssid && wps_build_mac_addr(msg, bssid)) ||
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConnectivityManager.java 619 String targetBssid = scanResultCandidate.BSSID;
623 // BSSID. mWifiInfo.mBSSID tracks the currently connected BSSID. This is checked just
624 // in case the firmware automatically roamed to a BSSID different from what QNS
659 mStateMachine.autoConnectToNetwork(candidate.networkId, scanResultCandidate.BSSID);
    [all...]
WifiServiceImpl.java     [all...]
  /external/wpa_supplicant_8/src/common/
wpa_common.c 963 const u8 *sta_addr, const u8 *bssid,
976 * BSSID || STA-ADDR)
983 os_memcpy(pos, bssid, ETH_ALEN);
997 * ANonce || BSSID || STA-ADDR))
1007 addr[4] = bssid;
    [all...]
wpa_common.h 361 const u8 *sta_addr, const u8 *bssid,
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.c 986 u8 bssid[ETH_ALEN], *rbuf, *pos, *count_pos; local
1007 if (wpa_sm_get_bssid(sm, bssid) < 0) {
1008 wpa_printf(MSG_WARNING, "Failed to read BSSID for EAPOL-Key "
1087 wpa_eapol_key_send(sm, sm->ptk.kck, sm->ptk.kck_len, ver, bssid,
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiStateMachineTest.java 1080 long bssid = 0x1234567800FFL; local
    [all...]
WifiLastResortWatchdogTest.java 111 String bssid, int associationRejections, int authenticationFailures, int dhcpFailures) {
112 assertEquals(associationRejections, mLastResortWatchdog.getFailureCount(bssid,
114 assertEquals(authenticationFailures, mLastResortWatchdog.getFailureCount(bssid,
116 assertEquals(dhcpFailures, mLastResortWatchdog.getFailureCount(bssid,
261 * Case 5: Test failure counting, incrementing a specific BSSID
310 * Case 6: Test failure counting, incrementing a specific BSSID, with some ephemeral networks
362 * Case 7: Test failure counting, incrementing a specific BSSID but with the wrong SSID given
407 * Case 8: Test failure counting, increment a bssid that does not exist
408 * Test has 4 networks buffered, increment each failure type, but using the wrong bssid
451 * Case 9: Test Failure Counting, using the "Any" BSSID
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java 139 mBSSID = (TextView) findViewById(R.id.bssid);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiManagerFacade.java 208 String bssid = wInfo.getBSSID(); local
209 if (bssid != null && !mCachedWifiInfo.equals(wInfo.toString())) {
290 if (j.has("BSSID")) {
291 config.BSSID = j.getString("BSSID");
405 if (result.BSSID.equals(id) || result.SSID.equals(id)) {
420 if (j.has("BSSID")) {
421 info.BSSID = j.getString("BSSID");
464 config.BSSID = result.BSSID
    [all...]
  /external/wpa_supplicant_8/hs20/client/
osu_client.c 1883 char bssid[20]; member in struct:osu_data
    [all...]

Completed in 746 milliseconds

1 2 3 4 5 6 7 8 91011