Lines Matching refs:sysctlnode

116 	int *, u_int, const struct sysctlnode *, \
119 int *name, u_int namelen, const struct sysctlnode *pnode, \
130 static void purge_tree(struct sysctlnode *);
131 static void print_tree(int *, u_int, struct sysctlnode *, u_int, int, regex_t *,
133 static void write_number(int *, u_int, struct sysctlnode *, char *);
134 static void write_string(int *, u_int, struct sysctlnode *, char *);
135 static void display_number(const struct sysctlnode *, const char *,
137 static void display_string(const struct sysctlnode *, const char *,
139 static void display_struct(const struct sysctlnode *, const char *,
147 static void getdesc1(int *, u_int, struct sysctlnode *);
148 static void getdesc(int *, u_int, struct sysctlnode *);
159 int __learn_tree(int *, u_int, struct sysctlnode *);
251 struct sysctlnode my_root = {
253 .sysctl_size = sizeof(struct sysctlnode),
543 purge_tree(struct sysctlnode *rnode) in purge_tree()
545 struct sysctlnode *node; in purge_tree()
589 print_tree(int *name, u_int namelen, struct sysctlnode *pnode, u_int type, in print_tree()
592 struct sysctlnode *node; in print_tree()
838 struct sysctlnode *node; in parse()
987 struct sysctlnode node; in parse_create()
1476 struct sysctlnode node; in parse_destroy()
1520 struct sysctlnode newdesc; in parse_describe()
1588 getdesc1(int *name, u_int namelen, struct sysctlnode *pnode) in getdesc1()
1590 struct sysctlnode node; in getdesc1()
1622 getdesc(int *name, u_int namelen, struct sysctlnode *pnode) in getdesc()
1624 struct sysctlnode *node = pnode->sysctl_child; in getdesc()
1757 write_number(int *name, u_int namelen, struct sysctlnode *node, char *value) in write_number()
1835 write_string(int *name, u_int namelen, struct sysctlnode *node, char *value) in write_string()
1871 display_number(const struct sysctlnode *node, const char *name, in display_number()
1943 display_string(const struct sysctlnode *node, const char *name, in display_string()
1994 display_struct(const struct sysctlnode *node, const char *name, in display_struct()
2396 struct sysctlnode node = *pnode; in kern_cp_id()