Searched refs:idtab (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/crypto/openssh/regress/misc/fuzz-harness/
H A Dagent_fuzz_helper.c66 TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
67 idtab->nentries++;
75 TAILQ_INSERT_TAIL(&idtab->idlist, id, next);
76 idtab->nentries++;
98 if (idtab == NULL) return;
99 for (id = TAILQ_FIRST(&idtab->idlist); id;
100 id = TAILQ_FIRST(&idtab->idlist)) {
101 TAILQ_REMOVE(&idtab->idlist, id, next);
104 free(idtab);
105 idtab
[all...]
/freebsd-current/usr.bin/last/
H A Dlast.c71 static SLIST_HEAD(, idtab) idlist;
73 struct idtab { struct
76 SLIST_ENTRY(idtab) list;
97 static void printentry(struct utmpx *, struct idtab *);
264 struct idtab *tt;
307 tt = malloc(sizeof(struct idtab));
336 printentry(struct utmpx *bp, struct idtab *tt)
/freebsd-current/crypto/openssh/
H A Dssh-agent.c157 struct idtable *idtab; variable in typeref:struct:idtable
241 idtab = xcalloc(1, sizeof(*idtab));
242 TAILQ_INIT(&idtab->idlist);
243 idtab->nentries = 0;
598 TAILQ_FOREACH(id, &idtab->idlist, next) {
648 TAILQ_FOREACH(id, &idtab->idlist, next) {
652 debug_f("key %u / %u: %s %s", i++, idtab->nentries,
669 nentries, idtab->nentries);
1030 if (idtab
[all...]

Completed in 71 milliseconds