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

  /external/wpa_supplicant_8/src/ap/
ap_list.c 59 s = s->hnext;
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)];
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext;
108 while (s->hnext != NULL &&
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0)
110 s = s->hnext;
111 if (s->hnext != NULL)
112 s->hnext = s->hnext->hnext;
    [all...]
ap_list.h 20 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 63 prev->hnext = pos->hnext;
66 pos->hnext;
71 pos = pos->hnext;
208 entry->hnext = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
374 entry = pmkid ? entry->hnext : entry->next;
sta_info.c 68 s = s->hnext;
95 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
107 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
111 while (s->hnext != NULL &&
112 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
113 s = s->hnext;
114 if (s->hnext != NULL)
115 s->hnext = s->hnext->hnext;
    [all...]
sta_info.h 43 struct sta_info *hnext; /* next entry in hash table list */ member in struct:sta_info

Completed in 30 milliseconds