Symbol: tree_cache
usr.sbin/dhcpd/alloc.c
58
struct tree_cache *
usr.sbin/dhcpd/alloc.c
61
struct tree_cache *rval;
usr.sbin/dhcpd/alloc.c
71
free_tree_cache(struct tree_cache *ptr)
usr.sbin/dhcpd/bootp.c
248
struct tree_cache netmask_tree; /* -- RBF */
usr.sbin/dhcpd/bootp.c
70
struct tree_cache *options[256];
usr.sbin/dhcpd/confpars.c
1242
group->options[option->code] = tree_cache(tree);
usr.sbin/dhcpd/confpars.c
200
struct tree_cache *cache;
usr.sbin/dhcpd/confpars.c
368
cache = tree_cache(tree);
usr.sbin/dhcpd/confpars.c
385
group->options[DHO_DHCP_SERVER_IDENTIFIER] = tree_cache(tree);
usr.sbin/dhcpd/confpars.c
956
struct tree_cache *
usr.sbin/dhcpd/confpars.c
977
return tree_cache(tree);
usr.sbin/dhcpd/dhcp.c
584
struct tree_cache *options[256];
usr.sbin/dhcpd/dhcp.c
585
struct tree_cache dhcpnak_tree, dhcpmsg_tree;
usr.sbin/dhcpd/dhcp.c
586
struct tree_cache client_tree, server_tree;
usr.sbin/dhcpd/dhcpd.h
141
struct tree_cache *options[256];
usr.sbin/dhcpd/dhcpd.h
202
struct tree_cache *options[256];
usr.sbin/dhcpd/dhcpd.h
210
struct tree_cache *fixed_addr;
usr.sbin/dhcpd/dhcpd.h
312
struct tree_cache **, int, int, int, u_int8_t *, int);
usr.sbin/dhcpd/dhcpd.h
360
struct tree_cache *parse_fixed_addr_param(FILE *);
usr.sbin/dhcpd/dhcpd.h
372
struct tree_cache *tree_cache(struct tree *);
usr.sbin/dhcpd/dhcpd.h
376
int tree_evaluate(struct tree_cache *);
usr.sbin/dhcpd/dhcpd.h
427
struct tree_cache *new_tree_cache(char *);
usr.sbin/dhcpd/dhcpd.h
430
void free_tree_cache(struct tree_cache *);
usr.sbin/dhcpd/options.c
274
int mms, struct tree_cache **options,
usr.sbin/dhcpd/options.c
399
struct tree_cache **options, unsigned char *priority_list, int overload,
usr.sbin/dhcpd/options.c
67
int store_options(unsigned char *, int, struct tree_cache **,
usr.sbin/dhcpd/tree.c
182
tree_evaluate(struct tree_cache *tree_cache)
usr.sbin/dhcpd/tree.c
184
unsigned char *bp = tree_cache->value;
usr.sbin/dhcpd/tree.c
185
int bc = tree_cache->buf_size;
usr.sbin/dhcpd/tree.c
192
if (!tree_cache->tree)
usr.sbin/dhcpd/tree.c
196
tree_cache->timeout = tree_evaluate_recurse(&bufix, &bp, &bc,
usr.sbin/dhcpd/tree.c
197
tree_cache->tree);
usr.sbin/dhcpd/tree.c
201
tree_cache->len = bufix;
usr.sbin/dhcpd/tree.c
224
tree_evaluate_recurse(&bufix, &bp, &bc, tree_cache->tree);
usr.sbin/dhcpd/tree.c
230
free(tree_cache->value);
usr.sbin/dhcpd/tree.c
231
tree_cache->value = bp;
usr.sbin/dhcpd/tree.c
232
tree_cache->len = bufix;
usr.sbin/dhcpd/tree.c
233
tree_cache->buf_size = bc;
usr.sbin/dhcpd/tree.c
76
struct tree_cache *
usr.sbin/dhcpd/tree.c
79
struct tree_cache *tc;