HomeSort by relevance Sort by last modified time
    Searched refs:hnext (Results 1 - 7 of 7) sorted by null

  /external/wpa_supplicant_8/src/ap/
ap_list.c 59 s = s->hnext;
120 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)];
132 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext;
136 while (s->hnext != NULL &&
137 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0)
138 s = s->hnext;
139 if (s->hnext != NULL)
140 s->hnext = s->hnext->hnext;
    [all...]
ap_list.h 23 struct ap_info *hnext; /* next entry in hash table list */ member in struct:ap_info
pmksa_cache_auth.h 18 struct rsn_pmksa_cache_entry *next, *hnext; member in struct:rsn_pmksa_cache_entry
pmksa_cache_auth.c 62 prev->hnext = pos->hnext;
65 pos->hnext;
70 pos = pos->hnext;
201 entry->hnext = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
363 entry = pmkid ? entry->hnext : entry->next;
sta_info.c 65 s = s->hnext;
92 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
104 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
108 while (s->hnext != NULL &&
109 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
110 s = s->hnext;
111 if (s->hnext != NULL)
112 s->hnext = s->hnext->hnext;
    [all...]
sta_info.h 41 struct sta_info *hnext; /* next entry in hash table list */ member in struct:sta_info
  /external/wpa_supplicant_6/wpa_supplicant/
mlme.c 57 struct ieee80211_sta_bss *hnext; member in struct:ieee80211_sta_bss
1192 bss->hnext = wpa_s->mlme.sta_bss_hash[STA_HASH(bss->bssid)];
    [all...]

Completed in 61 milliseconds