Lines Matching defs:ent
34 struct sss_ssh_ent *ent)
47 name = talloc_strdup(tmp_ctx, ent->name);
52 for (i = 0; i < ent->num_aliases; i++) {
53 name = talloc_asprintf_append(name, ",%s", ent->aliases[i]);
64 for (i = 0; i < ent->num_pubkeys; i++) {
65 ret = sss_ssh_format_pubkey(tmp_ctx, &ent->pubkeys[i], &pubkey);
89 struct sss_ssh_ent *ent)
107 for (i = 0; i < ent->num_pubkeys; i++) {
108 ret = sss_ssh_format_pubkey(tmp_ctx, &ent->pubkeys[i], &pubkey);
114 for (j = 0; j <= ent->num_aliases; j++) {
115 name = (j == 0 ? ent->name : ent->aliases[j-1]);
175 struct sss_ssh_ent *ent;
215 ret = sss_ssh_make_ent(tmp_ctx, hosts[i], &ent);
223 entstr = ssh_host_pubkeys_format_known_host_hashed(ent, ent);
225 entstr = ssh_host_pubkeys_format_known_host_plain(ent, ent);
230 "for [%s]\n", ent->name);
240 talloc_free(ent);