Searched refs:hnext (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/contrib/wpa/src/ap/
H A Dap_list.c59 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...]
H A Dap_list.h20 struct ap_info *hnext; /* next entry in hash table list */ member in struct:ap_info
H A Dpmksa_cache_auth.h18 struct rsn_pmksa_cache_entry *next, *hnext; member in struct:rsn_pmksa_cache_entry
H A Dpmksa_cache_auth.c67 prev->hnext = entry->hnext;
69 pmksa->pmkid[hash] = entry->hnext;
73 pos = pos->hnext;
246 entry->hnext = pmksa->pmkid[hash];
481 entry = entry->hnext) {
H A Dsta_info.c75 s = s->hnext;
126 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
138 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
142 while (s->hnext != NULL &&
143 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
144 s = s->hnext;
145 if (s->hnext != NULL)
146 s->hnext = s->hnext->hnext;
[all...]
H A Dsta_info.h108 struct sta_info *hnext; /* next entry in hash table list */ member in struct:sta_info
/freebsd-current/contrib/lua/src/
H A Dlstring.c70 TString *hnext = p->u.hnext; /* save next */ local
72 p->u.hnext = vect[h]; /* chain it into array */
74 p = hnext;
168 p = &(*p)->u.hnext;
169 *p = (*p)->u.hnext; /* remove element from its list */
195 for (ts = *list; ts != NULL; ts = ts->u.hnext) {
211 ts->u.hnext = *list;
H A Dlobject.h393 struct TString *hnext; /* linked list for hash table */ member in union:TString::__anon5
H A Dltests.c1042 for (ts = tb->hash[s]; ts != NULL; ts = ts->u.hnext) {
/freebsd-current/contrib/less/
H A Dch.c42 struct bufnode *hnext, *hprev; member in struct:bufnode
111 for (bn = thisfile->hashtbl[h].hnext; \
112 bn != END_OF_HCHAIN(h); bn = bn->hnext)
115 (bn)->hnext->hprev = (bn)->hprev; \
116 (bn)->hprev->hnext = (bn)->hnext;
119 (bn)->hnext = thisfile->hashtbl[h].hnext; \
121 thisfile->hashtbl[h].hnext->hprev = (bn); \
122 thisfile->hashtbl[h].hnext
[all...]
/freebsd-current/usr.bin/mkstr/
H A Dmkstr.c260 struct hash *hnext; member in struct:hash
280 for (hp = bucket[i]; hp != 0; hp = hp->hnext)
294 hp->hnext = bucket[i];
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_htable.c1154 void *hnext; local
1183 hnext = nextiph->iph_next;
1209 hnext = nextnode->ipe_next;
1215 hnext = NULL;
1252 if (hnext == NULL)

Completed in 133 milliseconds