Lines Matching refs:token
46 struct token { struct
50 const struct token *next; argument
53 static const struct token t_main[];
54 static const struct token t_fib[];
55 static const struct token t_show[];
56 static const struct token t_show_iface[];
57 static const struct token t_show_nbr[];
58 static const struct token t_show_rib[];
59 static const struct token t_show_fib[];
60 static const struct token t_log[];
62 static const struct token t_main[] = {
70 static const struct token t_fib[] = {
76 static const struct token t_show[] = {
85 static const struct token t_show_iface[] = {
90 static const struct token t_show_nbr[] = {
95 static const struct token t_show_rib[] = {
100 static const struct token t_show_fib[] = {
110 static const struct token t_log[] = {
116 static const struct token *match_token(const char *, const struct token *,
118 static void show_valid_args(const struct token *table);
124 const struct token *table = t_main; in parse()
125 const struct token *match; in parse()
153 static const struct token *
154 match_token(const char *word, const struct token *table, in match_token()
158 const struct token *t = NULL; in match_token()
235 show_valid_args(const struct token *table) in show_valid_args()