Lines Matching refs:token
44 struct token { struct
48 const struct token *next; argument
51 static const struct token t_main[];
52 static const struct token t_log[];
53 static const struct token t_status[];
55 static const struct token t_main[] = {
62 static const struct token t_log[] = {
69 static const struct token t_status[] = {
76 static const struct token *match_token(const char *, const struct token *,
78 static void show_valid_args(const struct token *);
84 const struct token *table = t_main; in parse()
85 const struct token *match; in parse()
113 static const struct token *
114 match_token(const char *word, const struct token *table, in match_token()
118 const struct token *t = NULL; in match_token()
158 show_valid_args(const struct token *table) in show_valid_args()