Lines Matching refs:token
47 struct token { struct
51 const struct token *next; argument
54 static const struct token t_main[];
55 static const struct token t_fib[];
56 static const struct token t_show[];
57 static const struct token t_show_iface[];
58 static const struct token t_show_db[];
59 static const struct token t_show_area[];
60 static const struct token t_show_nbr[];
61 static const struct token t_show_rib[];
62 static const struct token t_show_fib[];
63 static const struct token t_log[];
65 static const struct token t_main[] = {
73 static const struct token t_fib[] = {
80 static const struct token t_show[] = {
91 static const struct token t_show_iface[] = {
98 static const struct token t_show_db[] = {
112 static const struct token t_show_area[] = {
117 static const struct token t_show_nbr[] = {
123 static const struct token t_show_rib[] = {
129 static const struct token t_show_fib[] = {
138 static const struct token t_log[] = {
144 static const struct token *match_token(const char *, const struct token *,
146 static void show_valid_args(const struct token *);
152 const struct token *table = t_main; in parse()
153 const struct token *match; in parse()
181 static const struct token *
182 match_token(const char *word, const struct token *table, in match_token()
186 const struct token *t = NULL; in match_token()
271 show_valid_args(const struct token *table) in show_valid_args()