Symbol: RB_INITIALIZER
lib/libcrypto/x509/x509_issuer_cache.c
51
RB_INITIALIZER(&x509_issuer_cache);
regress/sys/sys/tree/rb/rb-test.c
118
struct tree root = RB_INITIALIZER(&root);
sbin/init/init.c
161
RB_HEAD(session_tree, init_session) session_tree = RB_INITIALIZER(session_tree);
sbin/unwind/frontend.c
170
RB_HEAD(bl_tree, bl_node) bl_head = RB_INITIALIZER(&bl_head);
usr.bin/du/du.c
237
RB_HEAD(ltree, links_entry) links = RB_INITIALIZER(&links);
usr.bin/mg/tags.c
48
RB_HEAD(tagtree, ctag) tags = RB_INITIALIZER(&tags);
usr.bin/ssh/sftp-usergroup.c
51
static struct idname_tree user_idname = RB_INITIALIZER(&user_idname);
usr.bin/ssh/sftp-usergroup.c
52
static struct idname_tree group_idname = RB_INITIALIZER(&group_idname);
usr.bin/tmux/client.c
59
static struct client_files client_files = RB_INITIALIZER(&client_files);
usr.bin/tmux/cmd-wait-for.c
71
static struct wait_channels wait_channels = RB_INITIALIZER(wait_channels);
usr.bin/tmux/format.c
74
static RB_HEAD(format_job_tree, format_job) format_jobs = RB_INITIALIZER();
usr.bin/tmux/input-keys.c
49
struct input_key_tree input_key_tree = RB_INITIALIZER(&input_key_tree);
usr.bin/tmux/key-bindings.c
112
static struct key_tables key_tables = RB_INITIALIZER(&key_tables);
usr.bin/tmux/session.c
33
struct session_groups session_groups = RB_INITIALIZER(&session_groups);
usr.bin/tmux/utf8.c
237
static struct utf8_data_tree utf8_data_tree = RB_INITIALIZER(utf8_data_tree);
usr.bin/tmux/utf8.c
250
static struct utf8_index_tree utf8_index_tree = RB_INITIALIZER(utf8_index_tree);
usr.bin/tmux/utf8.c
50
RB_INITIALIZER(utf8_width_cache);
usr.sbin/bgpd/rde.c
3779
struct rde_pftable_tree pftable_tree = RB_INITIALIZER(&pftable_tree);
usr.sbin/bgpd/rde_peer.c
29
struct peer_tree peertable = RB_INITIALIZER(&peertable);
usr.sbin/bgpd/rde_peer.c
30
struct peer_tree zombietable = RB_INITIALIZER(&zombietable);
usr.sbin/bgpd/rde_rib.c
1305
RB_INITIALIZER(&nexthoptree);
usr.sbin/bgpd/rde_rib.c
42
struct rib flowrib = { .id = 1, .tree = RB_INITIALIZER(&flowrib.tree) };
usr.sbin/eigrpd/interface.c
52
struct iface_id_head ifaces_by_id = RB_INITIALIZER(&ifaces_by_id);
usr.sbin/eigrpd/kroute.c
128
static struct kroute_tree krt = RB_INITIALIZER(&krt);
usr.sbin/eigrpd/kroute.c
129
static struct kif_tree kit = RB_INITIALIZER(&kit);
usr.sbin/eigrpd/neighbor.c
38
struct nbr_pid_head nbrs_by_pid = RB_INITIALIZER(&nbrs_by_pid);
usr.sbin/eigrpd/rde_dual.c
74
struct rde_nbr_head rde_nbrs = RB_INITIALIZER(&rde_nbrs);
usr.sbin/ldpd/kroute.c
135
static struct kroute_tree krt = RB_INITIALIZER(&krt);
usr.sbin/ldpd/kroute.c
136
static struct kif_tree kit = RB_INITIALIZER(&kit);
usr.sbin/ldpd/lde.c
63
struct nbr_tree lde_nbrs = RB_INITIALIZER(&lde_nbrs);
usr.sbin/ldpd/lde_lib.c
43
struct fec_tree ft = RB_INITIALIZER(&ft);
usr.sbin/ldpd/neighbor.c
103
struct nbr_id_head nbrs_by_id = RB_INITIALIZER(&nbrs_by_id);
usr.sbin/ldpd/neighbor.c
104
struct nbr_addr_head nbrs_by_addr = RB_INITIALIZER(&nbrs_by_addr);
usr.sbin/ldpd/neighbor.c
105
struct nbr_pid_head nbrs_by_pid = RB_INITIALIZER(&nbrs_by_pid);
usr.sbin/ospfd/kroute.c
113
RB_HEAD(kroute_tree, kroute_node) krt = RB_INITIALIZER(&krt);
usr.sbin/ospfd/kroute.c
117
RB_HEAD(kif_tree, kif_node) kit = RB_INITIALIZER(&kit);
usr.sbin/rpki-client/filemode.c
46
static struct auth_tree auths = RB_INITIALIZER(&auths);
usr.sbin/rpki-client/filemode.c
47
static struct crl_tree crls = RB_INITIALIZER(&crls);
usr.sbin/rpki-client/main.c
63
static struct filepath_tree fpt = RB_INITIALIZER(&fpt);
usr.sbin/rpki-client/nca.c
130
static RB_HEAD(nca_hist_tree, nca_hist) ncas_hist = RB_INITIALIZER(&ncas_hist);
usr.sbin/rpki-client/parser.c
44
static struct auth_tree auths = RB_INITIALIZER(&auths);
usr.sbin/rpki-client/parser.c
45
static struct crl_tree crls = RB_INITIALIZER(&crls);
usr.sbin/rpki-client/parser.c
63
static RB_HEAD(repo_tree, parse_repo) repos = RB_INITIALIZER(&repos);
usr.sbin/snmpd/application_agentx.c
115
RB_INITIALIZER(&appl_agentx_conns);
usr.sbin/snmpd/application_agentx.c
117
RB_INITIALIZER(&appl_agentx_sessions);
usr.sbin/snmpd/application_internal.c
90
appl_internal_objects = RB_INITIALIZER(&appl_internal_objects),
usr.sbin/snmpd/application_internal.c
91
appl_internal_objects_conf = RB_INITIALIZER(&appl_internal_objects_conf);
usr.sbin/snmpd/mib.y
234
RB_HEAD(modulesci, module) modulesci = RB_INITIALIZER(&modulesci);
usr.sbin/snmpd/mib.y
235
RB_HEAD(modulescs, module) modulescs = RB_INITIALIZER(&modulescs);
usr.sbin/snmpd/mib.y
236
RB_HEAD(items, item) items = RB_INITIALIZER(&items);
usr.sbin/snmpd/mib.y
237
RB_HEAD(itemsgci, item) itemsci = RB_INITIALIZER(&itemsci);
usr.sbin/snmpd/snmpe.c
62
struct snmp_messages snmp_messages = RB_INITIALIZER(&snmp_messages);
usr.sbin/snmpd/traphandler.c
55
struct trapcmd_tree trapcmd_tree = RB_INITIALIZER(&trapcmd_tree);