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_iface_af[];
59 static const struct token t_show_disc[];
60 static const struct token t_show_disc_af[];
61 static const struct token t_show_nbr[];
62 static const struct token t_show_nbr_af[];
63 static const struct token t_show_lib[];
64 static const struct token t_show_lib_af[];
65 static const struct token t_show_fib[];
66 static const struct token t_show_fib_af[];
67 static const struct token t_show_l2vpn[];
68 static const struct token t_clear[];
69 static const struct token t_clear_nbr[];
70 static const struct token t_log[];
72 static const struct token t_main[] = {
81 static const struct token t_fib[] = {
87 static const struct token t_show[] = {
98 static const struct token t_show_iface[] = {
104 static const struct token t_show_iface_af[] = {
109 static const struct token t_show_disc[] = {
115 static const struct token t_show_disc_af[] = {
120 static const struct token t_show_nbr[] = {
126 static const struct token t_show_nbr_af[] = {
131 static const struct token t_show_lib[] = {
137 static const struct token t_show_lib_af[] = {
142 static const struct token t_show_fib[] = {
152 static const struct token t_show_fib_af[] = {
157 static const struct token t_show_l2vpn[] = {
163 static const struct token t_clear[] = {
168 static const struct token t_clear_nbr[] = {
174 static const struct token t_log[] = {
180 static const struct token *match_token(const char *, const struct token *,
182 static void show_valid_args(const struct token *);
188 const struct token *table = t_main; in parse()
189 const struct token *match; in parse()
217 static const struct token *
218 match_token(const char *word, const struct token *table, in match_token()
222 const struct token *t = NULL; in match_token()
307 show_valid_args(const struct token *table) in show_valid_args()