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_db[];
58 static const struct token t_show_area[];
59 static const struct token t_show_nbr[];
60 static const struct token t_show_rib[];
61 static const struct token t_show_fib[];
62 static const struct token t_log[];
64 static const struct token t_main[] = {
72 static const struct token t_fib[] = {
79 static const struct token t_show[] = {
90 static const struct token t_show_iface[] = {
97 static const struct token t_show_db[] = {
110 static const struct token t_show_area[] = {
115 static const struct token t_show_nbr[] = {
121 static const struct token t_show_rib[] = {
127 static const struct token t_show_fib[] = {
137 static const struct token t_log[] = {
143 static const struct token *match_token(const char *, const struct token *,
145 static void show_valid_args(const struct token *);
151 const struct token *table = t_main; in parse()
152 const struct token *match; in parse()
180 static const struct token *
181 match_token(const char *word, const struct token *table, in match_token()
185 const struct token *t = NULL; in match_token()
270 show_valid_args(const struct token *table) in show_valid_args()