Lines Matching refs:token
49 struct token { struct
53 const struct token *next; argument
56 static const struct token t_main[];
57 static const struct token t_fib[];
58 static const struct token t_show[];
59 static const struct token t_show_iface[];
60 static const struct token t_show_iface_af[];
61 static const struct token t_show_iface_as[];
62 static const struct token t_show_nbr[];
63 static const struct token t_show_nbr_af[];
64 static const struct token t_show_nbr_as[];
65 static const struct token t_show_topology[];
66 static const struct token t_show_topology_af[];
67 static const struct token t_show_topology_as[];
68 static const struct token t_show_fib[];
69 static const struct token t_show_fib_af[];
70 static const struct token t_show_stats[];
71 static const struct token t_show_stats_af[];
72 static const struct token t_show_stats_as[];
73 static const struct token t_log[];
74 static const struct token t_clear[];
75 static const struct token t_clear_nbr[];
76 static const struct token t_clear_nbr_af[];
77 static const struct token t_clear_nbr_as[];
79 static const struct token t_main[] = {
88 static const struct token t_fib[] = {
94 static const struct token t_show[] = {
104 static const struct token t_show_iface[] = {
113 static const struct token t_show_iface_af[] = {
118 static const struct token t_show_iface_as[] = {
123 static const struct token t_show_nbr[] = {
130 static const struct token t_show_nbr_af[] = {
135 static const struct token t_show_nbr_as[] = {
140 static const struct token t_show_topology[] = {
150 static const struct token t_show_topology_af[] = {
155 static const struct token t_show_topology_as[] = {
160 static const struct token t_show_fib[] = {
170 static const struct token t_show_fib_af[] = {
176 static const struct token t_show_stats[] = {
183 static const struct token t_show_stats_af[] = {
188 static const struct token t_show_stats_as[] = {
193 static const struct token t_clear[] = {
198 static const struct token t_clear_nbr[] = {
206 static const struct token t_clear_nbr_af[] = {
211 static const struct token t_clear_nbr_as[] = {
216 static const struct token t_log[] = {
222 static const struct token *match_token(const char *, const struct token *,
224 static void show_valid_args(const struct token *);
230 const struct token *table = t_main; in parse()
231 const struct token *match; in parse()
259 static const struct token *
260 match_token(const char *word, const struct token *table, in match_token()
264 const struct token *t = NULL; in match_token()
364 show_valid_args(const struct token *table) in show_valid_args()