Lines Matching refs:node
52 struct node {
53 TAILQ_ENTRY(node) n_next;
54 TAILQ_HEAD(nodehead, node) n_children;
55 struct node *n_parent;
83 struct node *node_new_root(void);
84 struct node *node_new(struct node *, char *, char *, char *, const char *,
86 struct node *node_new_map(struct node *, char *, char *, char *,
88 struct node *node_find(struct node *, const char *mountpoint);
89 bool node_is_direct_map(const struct node *);
90 bool node_has_wildcards(const struct node *);
91 char *node_path(const struct node *);
92 char *node_options(const struct node *);
93 void node_expand_ampersand(struct node *, const char *);
94 void node_expand_wildcard(struct node *, const char *);
95 int node_expand_defined(struct node *);
96 void node_expand_indirect_maps(struct node *);
97 void node_print(const struct node *, const char *);
98 void parse_master(struct node *, const char *);
99 void parse_map(struct node *, const char *, const char *, bool *);