Home
last modified time | relevance | path

Searched refs:hnext (Results 1 – 8 of 8) sorted by relevance

/external/wpa_supplicant_8/src/ap/
Dap_list.c59 s = s->hnext; in ap_get_ap()
92 ap->hnext = iface->ap_hash[STA_HASH(ap->addr)]; in ap_ap_hash_add()
104 iface->ap_hash[STA_HASH(ap->addr)] = s->hnext; in ap_ap_hash_del()
108 while (s->hnext != NULL && in ap_ap_hash_del()
109 os_memcmp(s->hnext->addr, ap->addr, ETH_ALEN) != 0) in ap_ap_hash_del()
110 s = s->hnext; in ap_ap_hash_del()
111 if (s->hnext != NULL) in ap_ap_hash_del()
112 s->hnext = s->hnext->hnext; in ap_ap_hash_del()
Dpmksa_cache_auth.c67 prev->hnext = entry->hnext; in pmksa_cache_free_entry()
69 pmksa->pmkid[hash] = entry->hnext; in pmksa_cache_free_entry()
73 pos = pos->hnext; in pmksa_cache_free_entry()
246 entry->hnext = pmksa->pmkid[hash]; in pmksa_cache_link_entry()
481 entry = entry->hnext) { in pmksa_cache_auth_get()
Dsta_info.c77 s = s->hnext; in ap_get_sta()
128 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)]; in ap_sta_hash_add()
140 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext; in ap_sta_hash_del()
144 while (s->hnext != NULL && in ap_sta_hash_del()
145 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0) in ap_sta_hash_del()
146 s = s->hnext; in ap_sta_hash_del()
147 if (s->hnext != NULL) in ap_sta_hash_del()
148 s->hnext = s->hnext->hnext; in ap_sta_hash_del()
Dap_list.h20 struct ap_info *hnext; /* next entry in hash table list */ member
Dpmksa_cache_auth.h18 struct rsn_pmksa_cache_entry *next, *hnext; member
Dsta_info.h66 struct sta_info *hnext; /* next entry in hash table list */ member
/external/lua/src/
Dlstring.c83 TString *hnext = p->u.hnext; /* save next */ in luaS_resize() local
85 p->u.hnext = tb->hash[h]; /* chain it */ in luaS_resize()
87 p = hnext; in luaS_resize()
158 p = &(*p)->u.hnext; in luaS_remove()
159 *p = (*p)->u.hnext; /* remove element from its list */ in luaS_remove()
173 for (ts = *list; ts != NULL; ts = ts->u.hnext) { in internshrstr()
189 ts->u.hnext = *list; in internshrstr()
Dlobject.h310 struct TString *hnext; /* linked list for hash table */ member