Lines Matching refs:sysctlnode
114 int *, u_int, const struct sysctlnode *, \
117 int *name, u_int namelen, const struct sysctlnode *pnode, \
128 static void purge_tree(struct sysctlnode *);
129 static void print_tree(int *, u_int, struct sysctlnode *, u_int, int, regex_t *,
131 static void write_number(int *, u_int, struct sysctlnode *, char *, bool);
132 static void write_string(int *, u_int, struct sysctlnode *, char *, bool);
133 static void display_number(const struct sysctlnode *, const char *,
135 static void display_string(const struct sysctlnode *, const char *,
137 static void display_struct(const struct sysctlnode *, const char *,
145 static void getdesc1(int *, u_int, struct sysctlnode *);
146 static void getdesc(int *, u_int, struct sysctlnode *);
157 int __learn_tree(int *, u_int, struct sysctlnode *);
255 struct sysctlnode my_root = {
257 .sysctl_size = sizeof(struct sysctlnode),
547 purge_tree(struct sysctlnode *rnode) in purge_tree()
549 struct sysctlnode *node; in purge_tree()
593 print_tree(int *name, u_int namelen, struct sysctlnode *pnode, u_int type, in print_tree()
596 struct sysctlnode *node; in print_tree()
842 struct sysctlnode *node; in parse()
985 struct sysctlnode node; in parse_create()
1474 struct sysctlnode node; in parse_destroy()
1518 struct sysctlnode newdesc; in parse_describe()
1586 getdesc1(int *name, u_int namelen, struct sysctlnode *pnode) in getdesc1()
1588 struct sysctlnode node; in getdesc1()
1620 getdesc(int *name, u_int namelen, struct sysctlnode *pnode) in getdesc()
1622 struct sysctlnode *node = pnode->sysctl_child; in getdesc()
1755 write_number(int *name, u_int namelen, struct sysctlnode *node, char *value, in write_number()
1836 write_string(int *name, u_int namelen, struct sysctlnode *node, char *value, in write_string()
1876 display_number(const struct sysctlnode *node, const char *name, in display_number()
1948 display_string(const struct sysctlnode *node, const char *name, in display_string()
1999 display_struct(const struct sysctlnode *node, const char *name, in display_struct()
2401 struct sysctlnode node = *pnode; in kern_cp_id()