Lines Matching defs:tablelist
250 struct tablelist
252 struct tablelist *t_next;
260 static struct tablelist *list_fcmd_tables = NULL;
261 static struct tablelist *list_ecmd_tables = NULL;
262 static struct tablelist *list_var_tables = NULL;
263 static struct tablelist *list_sysvar_tables = NULL;
327 static void expand_cmd_table(struct tablelist *tlist)
329 struct tablelist *t;
403 static int add_cmd_table(struct tablelist **tlist, unsigned char *buf, size_t len)
405 struct tablelist *t;
410 * Allocate a tablelist structure, initialize it,
413 if ((t = (struct tablelist *)
414 calloc(1, sizeof(struct tablelist))) == NULL)
425 struct tablelist *e;
436 static void pop_cmd_table(struct tablelist **tlist)
438 struct tablelist *t;
447 struct tablelist *e;
477 static void add_var_table(struct tablelist **tlist, unsigned char *buf, size_t len)
740 static int cmd_decode(struct tablelist *tlist, constant char *cmd, constant char **sp)
742 struct tablelist *t;