/external/openssh/ |
D | ssh-add.c | 364 struct ssh_identitylist *idlist; in list_identities() local 374 &idlist)) != 0) { in list_identities() 380 for (i = 0; i < idlist->nkeys; i++) { in list_identities() 383 fp = sshkey_fingerprint(idlist->keys[i], in list_identities() 386 sshkey_size(idlist->keys[i]), in list_identities() 388 idlist->comments[i], in list_identities() 389 sshkey_type(idlist->keys[i])); in list_identities() 392 if ((r = sshkey_write(idlist->keys[i], in list_identities() 398 fprintf(stdout, " %s\n", idlist->comments[i]); in list_identities() 401 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; 177 TAILQ_INIT(&idtable[i].idlist); in idtab_init() 207 TAILQ_FOREACH(id, &tab->idlist, next) { in lookup_identity() 258 TAILQ_FOREACH(id, &tab->idlist, next) { in process_request_identities() 497 TAILQ_REMOVE(&tab->idlist, id, next); in process_remove_identity() 514 for (id = TAILQ_FIRST(&tab->idlist); id; in process_remove_all_identities() 515 id = TAILQ_FIRST(&tab->idlist)) { in process_remove_all_identities() 516 TAILQ_REMOVE(&tab->idlist, id, next); in process_remove_all_identities() 538 for (id = TAILQ_FIRST(&tab->idlist); id; id = nxt) { in reaper() 544 TAILQ_REMOVE(&tab->idlist, id, next); in reaper() [all …]
|
D | sshconnect2.c | 247 typedef struct idlist Idlist; 258 TAILQ_HEAD(idlist, identity); 270 struct idlist keys; 628 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { in input_userauth_pk_ok() 1306 struct idlist agent, files, *preferred; in pubkey_prepare() 1310 struct ssh_identitylist *idlist; in pubkey_prepare() local 1350 } else if ((r = ssh_fetch_identitylist(agent_fd, 2, &idlist)) != 0) { in pubkey_prepare() 1356 for (j = 0; j < idlist->nkeys; j++) { in pubkey_prepare() 1363 if (sshkey_equal(idlist->keys[j], id->key)) { in pubkey_prepare() 1374 id->key = idlist->keys[j]; in pubkey_prepare() [all …]
|
/external/python/setuptools/pkg_resources/tests/ |
D | test_working_set.py | 68 idlist = [] 88 idlist.append(id_) 101 argvalues, ids=idlist)
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
D | ICUZDump.java | 247 List idlist = new ArrayList(); in main() local 270 idlist.add(args[i].trim()); in main() 305 int len = idlist.size(); in main() 310 tzids = new String[idlist.size()]; in main() 311 idlist.toArray(tzids); in main()
|
/external/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 345 def has_blank_ids(idlist): argument 349 return not(all(k for k in idlist)) 364 idlist = get_id_list(testlist) 365 if (has_blank_ids(idlist)): 602 ucat, idlist, testcases, alltests = get_test_cases(args) 605 if (has_blank_ids(idlist)):
|
/external/ltp/testcases/kernel/device-drivers/drm/kernel_space/ |
D | tdrm.c | 49 static drm_pci_list_t DRM(idlist)[] = variable 56 #define DRIVER_CARD_LIST DRM(idlist)
|
/external/ltp/testcases/kernel/hotplug/memory_hotplug/ |
D | commands.c | 551 char *idlist, *nextarg; in migrate_process() local 568 idlist = strtok_r(args, whitespace, &nextarg); in migrate_process() 569 nr_to = get_arg_nodeid_list(idlist, toids); in migrate_process() 578 idlist = strtok_r(args, whitespace, &nextarg); in migrate_process() 579 nr_from = get_arg_nodeid_list(idlist, fromids); in migrate_process()
|
/external/python/setuptools/setuptools/tests/ |
D | test_egg_info.py | 188 idlist = [] 206 idlist.append(id_) 218 argvalues, ids=idlist,
|
/external/icu/icu4c/source/i18n/ |
D | coll.cpp | 709 const UnicodeString * idlist = _delegate->getSupportedIDs(count, status); in CFactory() local 711 _ids->put(idlist[i], (void*)this, status); in CFactory()
|
D | numfmt.cpp | 916 const UnicodeString * const idlist = _delegate->getSupportedIDs(count, status); in getSupportedIDs() local 920 _ids->put(idlist[i], (void*)this, status); in getSupportedIDs()
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | TreeAdaptor.as | 128 * Flat trees such as for lists like "idlist : ID+ ;" are left alone
|