Symbol: idname
sbin/iked/ca.c
1997
X509_NAME *subject, *idname = NULL;
sbin/iked/ca.c
2010
if ((idname = d2i_X509_NAME(NULL, &idptr, idlen)) == NULL)
sbin/iked/ca.c
2012
if (X509_NAME_cmp(subject, idname) == 0)
sbin/iked/ca.c
2014
X509_NAME_free(idname);
sbin/ipsecctl/pfkdump.c
123
struct idname msg_types[] = {
sbin/ipsecctl/pfkdump.c
142
struct idname sa_types[] = {
sbin/ipsecctl/pfkdump.c
156
struct idname auth_types[] = {
sbin/ipsecctl/pfkdump.c
171
struct idname enc_types[] = {
sbin/ipsecctl/pfkdump.c
185
struct idname comp_types[] = {
sbin/ipsecctl/pfkdump.c
192
struct idname flag_types[] = {
sbin/ipsecctl/pfkdump.c
201
struct idname identity_types[] = {
sbin/ipsecctl/pfkdump.c
210
struct idname flow_types[] = {
sbin/ipsecctl/pfkdump.c
220
struct idname states[] = {
sbin/ipsecctl/pfkdump.c
228
static struct idname *
sbin/ipsecctl/pfkdump.c
229
lookup(struct idname *tab, u_int32_t id)
sbin/ipsecctl/pfkdump.c
231
struct idname *entry;
sbin/ipsecctl/pfkdump.c
240
lookup_name(struct idname *tab, u_int32_t id)
sbin/ipsecctl/pfkdump.c
242
struct idname *entry;
sbin/ipsecctl/pfkdump.c
251
struct idname *entry;
sbin/ipsecctl/pfkdump.c
271
struct idname *entry;
sbin/ipsecctl/pfkdump.c
67
static struct idname *lookup(struct idname *, u_int32_t);
sbin/ipsecctl/pfkdump.c
68
static char *lookup_name(struct idname *, u_int32_t);
sbin/ipsecctl/pfkdump.c
82
struct idname ext_types[] = {
usr.bin/ssh/sftp-usergroup.c
38
RB_ENTRY(idname) entry;
usr.bin/ssh/sftp-usergroup.c
42
idname_cmp(struct idname *a, struct idname *b)
usr.bin/ssh/sftp-usergroup.c
48
RB_HEAD(idname_tree, idname);
usr.bin/ssh/sftp-usergroup.c
49
RB_GENERATE_STATIC(idname_tree, idname, entry, idname_cmp)
usr.bin/ssh/sftp-usergroup.c
55
idname_free(struct idname *idname)
usr.bin/ssh/sftp-usergroup.c
57
if (idname == NULL)
usr.bin/ssh/sftp-usergroup.c
59
free(idname->name);
usr.bin/ssh/sftp-usergroup.c
60
free(idname);
usr.bin/ssh/sftp-usergroup.c
66
struct idname *idname;
usr.bin/ssh/sftp-usergroup.c
68
if ((idname = xcalloc(1, sizeof(*idname))) == NULL)
usr.bin/ssh/sftp-usergroup.c
70
idname->id = id;
usr.bin/ssh/sftp-usergroup.c
71
idname->name = xstrdup(name);
usr.bin/ssh/sftp-usergroup.c
72
if (RB_INSERT(idname_tree, tree, idname) != NULL)
usr.bin/ssh/sftp-usergroup.c
73
idname_free(idname);
usr.bin/ssh/sftp-usergroup.c
79
struct idname idname, *found;
usr.bin/ssh/sftp-usergroup.c
81
memset(&idname, 0, sizeof(idname));
usr.bin/ssh/sftp-usergroup.c
82
idname.id = id;
usr.bin/ssh/sftp-usergroup.c
83
if ((found = RB_FIND(idname_tree, tree, &idname)) != NULL)