Searched refs:idlist (Results 1 – 7 of 7) sorted by relevance
/external/openssh/ |
D | ssh-add.c | 368 struct ssh_identitylist *idlist; in list_identities() local 373 &idlist)) != 0) { in list_identities() 379 for (i = 0; i < idlist->nkeys; i++) { in list_identities() 382 fp = sshkey_fingerprint(idlist->keys[i], in list_identities() 385 sshkey_size(idlist->keys[i]), in list_identities() 387 idlist->comments[i], in list_identities() 388 sshkey_type(idlist->keys[i])); in list_identities() 391 if ((r = sshkey_write(idlist->keys[i], in list_identities() 397 fprintf(stdout, " %s\n", idlist->comments[i]); in list_identities() 400 ssh_free_identitylist(idlist); in list_identities()
|
D | sshconnect1.c | 73 struct ssh_identitylist *idlist = NULL; in try_agent_authentication() local 87 if ((r = ssh_fetch_identitylist(agent_fd, 1, &idlist)) != 0) { in try_agent_authentication() 93 for (i = 0; i < idlist->nkeys; i++) { in try_agent_authentication() 96 idlist->comments[i]); in try_agent_authentication() 100 packet_put_bignum(idlist->keys[i]->rsa->n); in try_agent_authentication() 124 if ((r = ssh_decrypt_challenge(agent_fd, idlist->keys[i], in try_agent_authentication() 162 ssh_free_identitylist(idlist); in try_agent_authentication()
|
D | ssh-agent.c | 123 TAILQ_HEAD(idqueue, identity) idlist; 170 TAILQ_INIT(&idtable[i].idlist); in idtab_init() 200 TAILQ_FOREACH(id, &tab->idlist, next) { in lookup_identity() 251 TAILQ_FOREACH(id, &tab->idlist, next) { in process_request_identities() 478 TAILQ_REMOVE(&tab->idlist, id, next); in process_remove_identity() 495 for (id = TAILQ_FIRST(&tab->idlist); id; in process_remove_all_identities() 496 id = TAILQ_FIRST(&tab->idlist)) { in process_remove_all_identities() 497 TAILQ_REMOVE(&tab->idlist, id, next); in process_remove_all_identities() 519 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) { in reaper() 525 TAILQ_REMOVE(&tab->idlist, id, next); in reaper() [all …]
|
D | sshconnect2.c | 251 typedef struct idlist Idlist; 262 TAILQ_HEAD(idlist, identity); 274 struct idlist keys; 610 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { in input_userauth_pk_ok() 1198 struct idlist agent, files, *preferred; in pubkey_prepare() 1202 struct ssh_identitylist *idlist; in pubkey_prepare() local 1251 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) { in pubkey_prepare() 1256 for (j = 0; j < idlist->nkeys; j++) { in pubkey_prepare() 1263 if (sshkey_equal(idlist->keys[j], id->key)) { in pubkey_prepare() 1274 id->key = idlist->keys[j]; in pubkey_prepare() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | coll.cpp | 698 const UnicodeString * idlist = _delegate->getSupportedIDs(count, status); in CFactory() local 700 _ids->put(idlist[i], (void*)this, status); in CFactory()
|
D | numfmt.cpp | 909 const UnicodeString * const idlist = _delegate->getSupportedIDs(count, status); in getSupportedIDs() local 913 _ids->put(idlist[i], (void*)this, status); in getSupportedIDs()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeAdaptor.as | 128 * Flat trees such as for lists like "idlist : ID+ ;" are left alone
|