HomeSort by relevance Sort by last modified time
    Searched refs:bssid (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/wpa_supplicant_6/wpa_supplicant/
blacklist.h 2 * wpa_supplicant - Temporary BSSID blacklist
20 u8 bssid[ETH_ALEN]; member in struct:wpa_blacklist
25 const u8 *bssid);
26 int wpa_blacklist_add(struct wpa_supplicant *wpa_s, const u8 *bssid);
27 int wpa_blacklist_del(struct wpa_supplicant *wpa_s, const u8 *bssid);
blacklist.c 2 * wpa_supplicant - Temporary BSSID blacklist
22 * wpa_blacklist_get - Get the blacklist entry for a BSSID
24 * @bssid: BSSID
25 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
28 const u8 *bssid)
34 if (os_memcmp(e->bssid, bssid, ETH_ALEN) == 0)
44 * wpa_blacklist_add - Add an BSSID to the blacklist
46 * @bssid: BSSID to be added to the blacklis
    [all...]
wps_supplicant.h 27 int wpas_wps_start_pbc(struct wpa_supplicant *wpa_s, const u8 *bssid);
28 int wpas_wps_start_pin(struct wpa_supplicant *wpa_s, const u8 *bssid,
30 int wpas_wps_start_reg(struct wpa_supplicant *wpa_s, const u8 *bssid,
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
smeSelect.c 65 * Connection candidate must match SSID, BSSID, BSS type, RSN and WSC settings, has the best
109 TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: considering BSSID: %02x:%02x:%02x:%02x:%02x:%02x for selection\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite->bssid[ 4 ], pCurrentSite->bssid[ 5 ]);
114 TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: BSSID: %02x:%02x:%02x:%02x:%02x:%02x was selected previously\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite-> (…)
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
smeSelect.c 65 * Connection candidate must match SSID, BSSID, BSS type, RSN and WSC settings, has the best
112 TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: considering BSSID: %02x:%02x:%02x:%02x:%02x:%02x for selection\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite->bssid[ 4 ], pCurrentSite->bssid[ 5 ]);
117 TRACE6(pSme->hReport, REPORT_SEVERITY_INFORMATION , "sme_Select: BSSID: %02x:%02x:%02x:%02x:%02x:%02x was selected previously\n", pCurrentSite->bssid[ 0 ], pCurrentSite->bssid[ 1 ], pCurrentSite->bssid[ 2 ], pCurrentSite->bssid[ 3 ], pCurrentSite-> (…)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/inc/
smeApi.h 73 macAddress_t *bssid,
82 macAddress_t *bssid);
88 macAddress_t *bssid,
91 TI_STATUS siteMgr_saveProbeRespBuffer(TI_HANDLE hSiteMgr, macAddress_t *bssid, UINT8 *pProbeRespBuffer, UINT32 length);
93 TI_STATUS siteMgr_saveBeaconBuffer(TI_HANDLE hSiteMgr, macAddress_t *bssid, UINT8 *pBeaconBuffer, UINT32 length);
  /system/core/nexus/
SupplicantConnectedEvent.h 29 SupplicantConnectedEvent(const char *bssid, bool reassicated);
SupplicantConnectedEvent.cpp 50 SupplicantConnectedEvent::SupplicantConnectedEvent(const char *bssid,
53 mBssid = strdup(bssid);
SupplicantAssociatingEvent.h 29 SupplicantAssociatingEvent(const char *bssid, const char *ssid, int freq);
SupplicantStatus.h 29 SupplicantStatus(int state, int id, char *bssid, char *ssid);
SupplicantStatus.cpp 33 SupplicantStatus::SupplicantStatus(int state, int id, char *bssid, char *ssid) :
34 mWpaState(state), mId(id), mBssid(bssid), mSsid(ssid) {
36 LOGD("state %d, id %d, bssid %p, ssid %p\n", mWpaState, mId, mBssid, mSsid);
47 char *bssid = NULL; local
58 if (!strcmp(token, "bssid"))
59 bssid = strdup(value);
89 return new SupplicantStatus(state, id, bssid, ssid);
SupplicantAssociatingEvent.cpp 85 SupplicantAssociatingEvent::SupplicantAssociatingEvent(const char *bssid,
89 mBssid = strdup(bssid);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
siteHash.c 60 1. hash function - which maps the 4 last bits of the BSSID to an entry in the hash table.
64 In order to find a site in the site table, we operate the hash function on the site's BSSID.
127 - Compute the site's hash entry based on the site BSSID and hash function
133 mac - The site BSSID
165 if (MAC_EQUAL (pSiteEntry->bssid, *mac))
168 "FIND success, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
190 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "FIND failure, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
200 - Compute the site's hash entry based on the site BSSID and hash function
208 mac - The site BSSID
267 if (MAC_EQUAL (pSiteEntry->bssid, *mac)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/sme/siteMgr/
siteHash.c 60 1. hash function - which maps the 4 last bits of the BSSID to an entry in the hash table.
64 In order to find a site in the site table, we operate the hash function on the site's BSSID.
164 - Compute the site's hash entry based on the site BSSID and hash function
170 mac - The site BSSID
193 if MAC_EQUAL((&(pSiteEntry->bssid)), mac)
195 WLAN_REPORT_INFORMATION(pSiteMgr->hReport, SITE_UPDATE_MODULE_LOG, ("FIND success, bssid: %X-%X-%X-%X-%X-%X\n\n", mac->addr[0], mac->addr[1], mac->addr[2], mac->addr[3], mac->addr[4], mac->addr[5]));
217 ("FIND failure, bssid: %X-%X-%X-%X-%X-%X\n\n", mac->addr[0], mac->addr[1], mac->addr[2], mac->addr[3], mac->addr[4], mac->addr[5]));
227 - Compute the site's hash entry based on the site BSSID and hash function
235 mac - The site BSSID
286 if MAC_EQUAL((&(pSiteEntry->bssid)), mac
    [all...]
select.c 208 WLAN_REPORT_INFORMATION(pSiteMgr->hReport, SITE_MGR_MODULE_LOG, ("siteMgr_disSelectSite REMOVE Primary ssid=%s, bssid= 0x%x-0x%x-0x%x-0x%x-0x%x-0x%x\n\n",
210 pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[0], pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[1], pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[2],
211 pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[3], pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[4], pSiteMgr->pSitesMgmtParams->pPrimarySite->bssid.addr[5] ));
325 WLAN_REPORT_INFORMATION(pSiteMgr->hReport, SITE_MGR_MODULE_LOG, ("SITE PRIMARY, ssid (%s len= %d ), %X-%X-%X-%X-%X-%X\n\n", pSiteEntry->ssid.ssidString, pSiteEntry->ssid.len, pSiteEntry->bssid.addr[0], pSiteEntry->bssid.addr[1], pSiteEntry->bssid.addr[2], pSiteEntry->bssid.addr[3], pSiteEntry->bssid.addr[4], pSiteEntry->bssid.addr[5]))
955 macAddress_t bssid; local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Sta_Management/
siteHash.c 60 1. hash function - which maps the 4 last bits of the BSSID to an entry in the hash table.
64 In order to find a site in the site table, we operate the hash function on the site's BSSID.
118 - Compute the site's hash entry based on the site BSSID and hash function
124 mac - The site BSSID
147 if (MAC_EQUAL (pSiteEntry->bssid, *mac))
149 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "FIND success, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
170 TRACE6(pSiteMgr->hReport, REPORT_SEVERITY_INFORMATION, "FIND failure, bssid: %X-%X-%X-%X-%X-%X\n\n", (*mac)[0], (*mac)[1], (*mac)[2], (*mac)[3], (*mac)[4], (*mac)[5]);
180 - Compute the site's hash entry based on the site BSSID and hash function
188 mac - The site BSSID
239 if (MAC_EQUAL (pSiteEntry->bssid, *mac)
    [all...]
  /external/wpa_supplicant/
events.c 91 os_memset(wpa_s->bssid, 0, ETH_ALEN);
131 wpa_printf(MSG_DEBUG, "RSN: PMKID candidate event - bssid=" MACSTR
133 MAC2STR(data->pmkid_candidate.bssid),
137 pmksa_candidate_add(wpa_s->wpa, data->pmkid_candidate.bssid,
374 i, MAC2STR(bss->bssid),
378 e = wpa_blacklist_get(wpa_s, bss->bssid);
402 os_memcmp(bss->bssid, ssid->bssid, ETH_ALEN) != 0)
405 "BSSID mismatch");
413 MAC2STR(bss->bssid),
674 u8 bssid[ETH_ALEN]; local
739 const u8 *bssid; local
    [all...]
driver_ndis.h 28 u8 bssid[ETH_ALEN]; member in struct:ndis_pmkid_entry
46 u8 bssid[ETH_ALEN]; member in struct:wpa_driver_ndis_data
preauth.c 34 u8 bssid[ETH_ALEN]; member in struct:rsn_pmksa_candidate
166 * @dst: Authenticator address (BSSID) with which to preauthenticate
317 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
318 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
323 MAC2STR(candidate->bssid));
325 rsn_preauth_init(sm, candidate->bssid, sm->cur_ssid);
331 MAC2STR(candidate->bssid));
335 wpa_sm_add_pmkid(sm, candidate->bssid, p->pmkid);
349 * @bssid: BSSID (authenticator address) of the candidat
    [all...]
mlme.c 90 u8 bssid[6]; member in struct:ieee80211_mgmt
277 u8 bssid[ETH_ALEN]; member in struct:ieee80211_sta_bss
306 ieee80211_bss_get(struct wpa_supplicant *wpa_s, const u8 *bssid);
571 os_memcpy(wpa_s->mlme.prev_bssid, wpa_s->bssid, ETH_ALEN);
613 os_memcpy(mgmt->da, wpa_s->bssid, ETH_ALEN);
615 os_memcpy(mgmt->bssid, wpa_s->bssid, ETH_ALEN);
643 " timed out", MAC2STR(wpa_s->bssid));
649 MAC2STR(wpa_s->bssid));
686 bss = ieee80211_bss_get(wpa_s, wpa_s->bssid);
2310 u8 bssid[ETH_ALEN]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpas-test.py 13 WPAS_DBUS_BSSID_INTERFACE = "fi.epitest.hostap.WPASupplicant.BSSID"
62 # Convert the byte-array for SSID and BSSID to printable strings
63 bssid = ""
64 for item in props["bssid"]:
65 bssid = bssid + ":%02x" % item
66 bssid = bssid[1:]
83 print " %s :: ssid='%s' wpa=%s wpa2=%s quality=%d%% rate=%d freq=%d" % (bssid, ssid, wpa, wpa2, qual, maxrate, freq)
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ndis.h 28 u8 bssid[ETH_ALEN]; member in struct:ndis_pmkid_entry
46 u8 bssid[ETH_ALEN]; member in struct:wpa_driver_ndis_data
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
preauth.h 28 void pmksa_candidate_add(struct wpa_sm *sm, const u8 *bssid,
60 const u8 *bssid,
preauth.c 36 u8 bssid[ETH_ALEN]; member in struct:rsn_pmksa_candidate
166 * @dst: Authenticator address (BSSID) with which to preauthenticate
318 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL);
319 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
324 MAC2STR(candidate->bssid));
326 rsn_preauth_init(sm, candidate->bssid,
333 MAC2STR(candidate->bssid));
337 wpa_sm_add_pmkid(sm, candidate->bssid, p->pmkid);
351 * @bssid: BSSID (authenticator address) of the candidat
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiWatchdogService.java 467 * @param bssid The BSSID of the access point.
469 private void onConnected(String ssid, String bssid) {
471 myLogV("onConnected: SSID: " + ssid + ", BSSID: " + bssid);
488 if (requiresWatchdog(ssid, bssid)) {
490 myLogD(ssid + " (" + bssid + ") requires the watchdog");
494 mHandler.checkAp(new AccessPoint(ssid, bssid));
498 myLogD(ssid + " (" + bssid + ") does not require the watchdog");
538 * @param bssid The BSSID of the access point
1166 String bssid; field in class:WifiWatchdogService.AccessPoint
    [all...]

Completed in 209 milliseconds

1 2 3 4 5 6 7 8 910