Lines Matching refs:token
44 struct token { struct
48 const struct token *next; argument
51 static const struct token t_main[];
52 static const struct token t_show[];
53 static const struct token t_show_iface[];
54 static const struct token t_show_nbr[];
55 static const struct token t_show_mfc[];
56 static const struct token t_show_rib[];
57 static const struct token t_log[];
59 static const struct token t_main[] = {
66 static const struct token t_show[] = {
77 static const struct token t_show_iface[] = {
84 static const struct token t_show_mfc[] = {
90 static const struct token t_show_nbr[] = {
96 static const struct token t_show_rib[] = {
102 static const struct token t_log[] = {
109 static void show_valid_args(const struct token *);
110 static const struct token *match_token(const char *, const struct token *,
117 const struct token *table = t_main; in parse()
118 const struct token *match; in parse()
146 static const struct token *
147 match_token(const char *word, const struct token *table, in match_token()
151 const struct token *t = NULL; in match_token()
228 show_valid_args(const struct token *table) in show_valid_args()