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

/freebsd-11-stable/sys/netinet6/
H A Dscope6.c145 scope6_set(struct ifnet *ifp, struct scope6_id *idlist) argument
170 if (idlist->s6id_list[i] &&
171 idlist->s6id_list[i] != sid->s6id_list[i]) {
177 idlist->s6id_list[i] != ifp->if_index) {
183 idlist->s6id_list[i] > V_if_index) {
199 sid->s6id_list[i] = idlist->s6id_list[i];
208 scope6_get(struct ifnet *ifp, struct scope6_id *idlist) argument
220 *idlist = *sid;
278 scope6_get_default(struct scope6_id *idlist) argument
282 *idlist
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dssh-add.c364 struct ssh_identitylist *idlist; local
374 &idlist)) != 0) {
380 for (i = 0; i < idlist->nkeys; i++) {
383 fp = sshkey_fingerprint(idlist->keys[i],
386 sshkey_size(idlist->keys[i]),
388 idlist->comments[i],
389 sshkey_type(idlist->keys[i]));
392 if ((r = sshkey_write(idlist->keys[i],
398 fprintf(stdout, " %s\n", idlist->comments[i]);
401 ssh_free_identitylist(idlist);
[all...]
H A Dsshconnect1.c73 struct ssh_identitylist *idlist = NULL; local
87 if ((r = ssh_fetch_identitylist(agent_fd, 1, &idlist)) != 0) {
93 for (i = 0; i < idlist->nkeys; i++) {
96 idlist->comments[i]);
100 packet_put_bignum(idlist->keys[i]->rsa->n);
124 if ((r = ssh_decrypt_challenge(agent_fd, idlist->keys[i],
162 ssh_free_identitylist(idlist);
H A Dssh-agent.c124 TAILQ_HEAD(idqueue, identity) idlist;
197 TAILQ_INIT(&idtable[i].idlist);
227 TAILQ_FOREACH(id, &tab->idlist, next) {
278 TAILQ_FOREACH(id, &tab->idlist, next) {
517 TAILQ_REMOVE(&tab->idlist, id, next);
534 for (id = TAILQ_FIRST(&tab->idlist); id;
535 id = TAILQ_FIRST(&tab->idlist)) {
536 TAILQ_REMOVE(&tab->idlist, id, next);
558 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) {
564 TAILQ_REMOVE(&tab->idlist, i
[all...]
H A Dsshconnect2.c247 typedef struct idlist Idlist;
258 TAILQ_HEAD(idlist, identity);
270 struct idlist keys;
628 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) {
1306 struct idlist agent, files, *preferred;
1310 struct ssh_identitylist *idlist; local
1350 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) {
1356 for (j = 0; j < idlist->nkeys; j++) {
1363 if (sshkey_equal(idlist->keys[j], id->key)) {
1373 /* XXX "steals" key/comment from idlist */
[all...]
/freebsd-11-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);
140 drm_attach_helper(device_t kdev, const drm_pci_id_list_t *idlist, argument
151 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-11-stable/usr.bin/last/
H A Dlast.c79 static SLIST_HEAD(, idtab) idlist;
252 SLIST_INIT(&idlist);
298 while ((tt = SLIST_FIRST(&idlist)) != NULL) {
299 SLIST_REMOVE_HEAD(&idlist, list);
330 SLIST_FOREACH(tt, &idlist, list)
341 SLIST_INSERT_HEAD(&idlist, tt, list);
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_drv.c54 drm_pci_id_list_t *idlist);
160 int drm_probe(device_t kdev, drm_pci_id_list_t *idlist) argument
171 id_entry = drm_find_description(vendor, device, idlist);
183 int drm_attach(device_t kdev, drm_pci_id_list_t *idlist) argument
240 dev->pci_device, idlist);
274 drm_pci_id_list_t *idlist)
278 for (i = 0; idlist[i].vendor != 0; i++) {
279 if ((idlist[i].vendor == vendor) &&
280 ((idlist[i].device == device) ||
281 (idlist[
273 drm_find_description(int vendor, int device, drm_pci_id_list_t *idlist) argument
[all...]
H A DdrmP.h719 int drm_probe(device_t kdev, drm_pci_id_list_t *idlist);
720 int drm_attach(device_t kdev, drm_pci_id_list_t *idlist);

Completed in 105 milliseconds