Home
last modified time | relevance | path

Searched refs:old_keys (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/clang/utils/analyzer/
DCmpRuns.py489 old_keys = set(stats_old.keys())
491 keys = sorted(old_keys & new_keys)
515 removed_keys = old_keys - new_keys
519 added_keys = new_keys - old_keys
/external/openssh/
Dclientloop.c1823 struct sshkey **old_keys; member
1839 sshkey_free(ctx->old_keys[i]); in hostkeys_update_ctx_free()
1840 free(ctx->old_keys); in hostkeys_update_ctx_free()
1868 if ((tmp = recallocarray(ctx->old_keys, ctx->nold, ctx->nold + 1, in hostkeys_find()
1869 sizeof(*ctx->old_keys))) == NULL) in hostkeys_find()
1872 ctx->old_keys = tmp; in hostkeys_find()
1873 ctx->old_keys[ctx->nold++] = l->key; in hostkeys_find()
1911 if ((fp = sshkey_fingerprint(ctx->old_keys[i], in update_known_hosts()
1917 sshkey_type(ctx->old_keys[i]), fp); in update_known_hosts()
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py1548 old_keys = (
1555 if value not in old_keys:
1556 if idleConf.GetOption('main', 'Keys', 'name') not in old_keys:
1557 changes.add_option('main', 'Keys', 'name', old_keys[0])