/external/openssh/ |
D | ssh-add.c | 206 struct ssh_identitylist *idlist; in add_file() local 289 (r = ssh_fetch_identitylist(agent_fd, &idlist)) == 0) { in add_file() 290 for (i = 0; i < idlist->nkeys; i++) { in add_file() 291 if (!sshkey_equal_public(idlist->keys[i], private)) in add_file() 293 left = sshkey_signatures_left(idlist->keys[i]); in add_file() 308 ssh_free_identitylist(idlist); in add_file() 311 ssh_free_identitylist(idlist); in add_file() 470 struct ssh_identitylist *idlist; in list_identities() local 474 if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) { in list_identities() 482 for (i = 0; i < idlist->nkeys; i++) { in list_identities() [all …]
|
D | ssh-agent.c | 133 TAILQ_HEAD(idqueue, identity) idlist; 185 TAILQ_INIT(&idtab->idlist); in idtab_init() 205 TAILQ_FOREACH(id, &idtab->idlist, next) { in lookup_identity() 253 TAILQ_FOREACH(id, &idtab->idlist, next) { in process_request_identities() 372 TAILQ_REMOVE(&idtab->idlist, id, next); in process_remove_identity() 387 for (id = TAILQ_FIRST(&idtab->idlist); id; in process_remove_all_identities() 388 id = TAILQ_FIRST(&idtab->idlist)) { in process_remove_all_identities() 389 TAILQ_REMOVE(&idtab->idlist, id, next); in process_remove_all_identities() 407 for (id = TAILQ_FIRST(&idtab->idlist); id; id = nxt) { in reaper() 413 TAILQ_REMOVE(&idtab->idlist, id, next); in reaper() [all …]
|
D | authfd.c | 343 struct ssh_identitylist *idlist = NULL; in ssh_agent_has_key() local 345 if ((r = ssh_fetch_identitylist(sock, &idlist)) != 0) { in ssh_agent_has_key() 349 for (i = 0; i < idlist->nkeys; i++) { in ssh_agent_has_key() 350 if (sshkey_equal_public(idlist->keys[i], key)) { in ssh_agent_has_key() 356 ssh_free_identitylist(idlist); in ssh_agent_has_key()
|
D | sshconnect2.c | 260 typedef struct idlist Idlist; 271 TAILQ_HEAD(idlist, identity); 287 struct idlist keys; 680 TAILQ_FOREACH_REVERSE(id, &authctxt->keys, idlist, next) { in input_userauth_pk_ok() 1562 struct idlist agent, files, *preferred; in pubkey_prepare() 1566 struct ssh_identitylist *idlist; in pubkey_prepare() local 1627 } else if ((r = ssh_fetch_identitylist(agent_fd, &idlist)) != 0) { in pubkey_prepare() 1633 for (j = 0; j < idlist->nkeys; j++) { in pubkey_prepare() 1640 if (sshkey_equal(idlist->keys[j], id->key)) { in pubkey_prepare() 1651 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/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/linux-kselftest/tools/testing/selftests/tc-testing/ |
D | tdc.py | 422 def has_blank_ids(idlist): argument 426 return not(all(k for k in idlist)) 441 idlist = get_id_list(testlist) 442 if (has_blank_ids(idlist)): 689 ucat, idlist, testcases, alltests = get_test_cases(args) 692 if (has_blank_ids(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 | 707 const UnicodeString * idlist = _delegate->getSupportedIDs(count, status); in CFactory() local 709 _ids->put(idlist[i], (void*)this, status); in CFactory()
|
D | numfmt.cpp | 915 const UnicodeString * const idlist = _delegate->getSupportedIDs(count, status); in getSupportedIDs() local 919 _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
|