Lines Matching refs:token
48 struct token { struct
52 const struct token *next; argument
55 static const struct token t_main[];
56 static const struct token t_log[];
57 static const struct token t_show[];
58 static const struct token t_show_interface[];
59 static const struct token t_send[];
60 static const struct token t_send_sol[];
62 static const struct token t_main[] = {
69 static const struct token t_log[] = {
75 static const struct token t_show[] = {
80 static const struct token t_send[] = {
84 static const struct token t_send_sol[] = {
89 static const struct token t_show_interface[] = {
95 static const struct token *match_token(const char *, const struct token *,
97 static void show_valid_args(const struct token *);
103 const struct token *table = t_main; in parse()
104 const struct token *match; in parse()
132 static const struct token *
133 match_token(const char *word, const struct token *table, in match_token()
137 const struct token *t = NULL; in match_token()
187 show_valid_args(const struct token *table) in show_valid_args()