Lines Matching defs:ent
427 struct sss_ssh_ent *ent)
440 name = talloc_strdup(tmp_ctx, ent->name);
445 for (i = 0; i < ent->num_aliases; i++) {
446 name = talloc_asprintf_append(name, ",%s", ent->aliases[i]);
457 for (i = 0; i < ent->num_pubkeys; i++) {
458 ret = sss_ssh_format_pubkey(tmp_ctx, &ent->pubkeys[i], &pubkey);
482 struct sss_ssh_ent *ent)
500 for (i = 0; i < ent->num_pubkeys; i++) {
501 ret = sss_ssh_format_pubkey(tmp_ctx, &ent->pubkeys[i], &pubkey);
507 for (j = 0; j <= ent->num_aliases; j++) {
508 name = (j == 0 ? ent->name : ent->aliases[j-1]);
576 struct sss_ssh_ent *ent;
629 ret = sss_ssh_make_ent(tmp_ctx, hosts[i], &ent);
637 entstr = ssh_host_pubkeys_format_known_host_hashed(ent, ent);
639 entstr = ssh_host_pubkeys_format_known_host_plain(ent, ent);
644 ent->name);
654 talloc_free(ent);