Searched refs:idlist (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/crypto/openssh/
H A Dssh-add.c201 struct ssh_identitylist *idlist; local
286 (r = ssh_fetch_identitylist(agent_fd, &idlist)) == 0) {
287 for (i = 0; i < idlist->nkeys; i++) {
288 if (!sshkey_equal_public(idlist->keys[i], private))
290 left = sshkey_signatures_left(idlist->keys[i]);
305 ssh_free_identitylist(idlist);
308 ssh_free_identitylist(idlist);
425 struct ssh_identitylist *idlist; local
429 if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) {
437 for (i = 0; i < idlist
[all...]
H A Dssh-agent.c129 TAILQ_HEAD(idqueue, identity) idlist;
200 TAILQ_INIT(&idtab->idlist);
219 TAILQ_FOREACH(id, &idtab->idlist, next) {
267 TAILQ_FOREACH(id, &idtab->idlist, next) {
367 TAILQ_REMOVE(&idtab->idlist, id, next);
382 for (id = TAILQ_FIRST(&idtab->idlist); id;
383 id = TAILQ_FIRST(&idtab->idlist)) {
384 TAILQ_REMOVE(&idtab->idlist, id, next);
402 for (id = TAILQ_FIRST(&idtab->idlist); id; id = nxt) {
408 TAILQ_REMOVE(&idtab->idlist, i
[all...]
H A Dsshconnect2.c250 typedef struct idlist Idlist;
261 TAILQ_HEAD(idlist, identity);
273 struct idlist keys;
649 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
1486 struct idlist agent, files, *preferred;
1490 struct ssh_identitylist *idlist; local
1529 } else if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) {
1535 for (j = 0; j < idlist->nkeys; j++) {
1542 if (sshkey_equal(idlist->keys[j], id->key)) {
1552 /* XXX "steals" key/comment from idlist */
[all...]
/freebsd-13-stable/sys/netinet6/
H A Dscope6.c143 scope6_set(struct ifnet *ifp, struct scope6_id *idlist) argument
168 if (idlist->s6id_list[i] &&
169 idlist->s6id_list[i] != sid->s6id_list[i]) {
175 idlist->s6id_list[i] != ifp->if_index) {
181 idlist->s6id_list[i] > V_if_index) {
197 sid->s6id_list[i] = idlist->s6id_list[i];
206 scope6_get(struct ifnet *ifp, struct scope6_id *idlist) argument
219 *idlist = *sid;
277 scope6_get_default(struct scope6_id *idlist) argument
281 *idlist
[all...]
/freebsd-13-stable/sys/dev/drm2/
H A Ddrm_os_freebsd.c90 drm_find_description(int vendor, int device, const drm_pci_id_list_t *idlist) argument
94 for (i = 0; idlist[i].vendor != 0; i++) {
95 if ((idlist[i].vendor == vendor) &&
96 ((idlist[i].device == device) ||
97 (idlist[i].device == 0))) {
98 return (&idlist[i]);
109 drm_probe_helper(device_t kdev, const drm_pci_id_list_t *idlist) argument
122 id_entry = drm_find_description(vendor, device, idlist);
143 drm_attach_helper(device_t kdev, const drm_pci_id_list_t *idlist, argument
154 dev->id_entry = drm_find_description(vendor, device, idlist);
[all...]
H A DdrmP.h1740 int drm_probe_helper(device_t kdev, const drm_pci_id_list_t *idlist);
1741 int drm_attach_helper(device_t kdev, const drm_pci_id_list_t *idlist,
/freebsd-13-stable/usr.bin/last/
H A Dlast.c83 static SLIST_HEAD(, idtab) idlist;
269 SLIST_INIT(&idlist);
313 while ((tt = SLIST_FIRST(&idlist)) != NULL) {
314 SLIST_REMOVE_HEAD(&idlist, list);
345 SLIST_FOREACH(tt, &idlist, list)
356 SLIST_INSERT_HEAD(&idlist, tt, list);

Completed in 85 milliseconds