Home | History | Annotate | Download | only in dist

Lines Matching defs:tablelist

229 struct tablelist
231 struct tablelist *t_next;
239 static struct tablelist *list_fcmd_tables = NULL;
240 static struct tablelist *list_ecmd_tables = NULL;
241 static struct tablelist *list_var_tables = NULL;
242 static struct tablelist *list_sysvar_tables = NULL;
306 static void expand_cmd_table(struct tablelist *tlist)
308 struct tablelist *t;
379 static int add_cmd_table(struct tablelist **tlist, char *buf, int len)
381 struct tablelist *t;
386 * Allocate a tablelist structure, initialize it,
389 if ((t = (struct tablelist *)
390 calloc(1, sizeof(struct tablelist))) == NULL)
422 static void add_var_table(struct tablelist **tlist, char *buf, int len)
628 static int cmd_decode(struct tablelist *tlist, char *cmd, char **sp)
630 struct tablelist *t;