Lines Matching refs:token
41 struct token { struct
45 const struct token *next; argument
48 static const struct token t_main[];
49 static const struct token t_show[];
50 static const struct token t_rdr[];
51 static const struct token t_table[];
52 static const struct token t_host[];
53 static const struct token t_rdr_id[];
54 static const struct token t_table_id[];
55 static const struct token t_host_id[];
56 static const struct token t_log[];
57 static const struct token t_load[];
59 static const struct token t_main[] = {
73 static const struct token t_show[] = {
83 static const struct token t_rdr[] = {
89 static const struct token t_table[] = {
95 static const struct token t_host[] = {
101 static const struct token t_rdr_id[] = {
106 static const struct token t_table_id[] = {
111 static const struct token t_host_id[] = {
116 static const struct token t_log[] = {
122 static const struct token t_load[] = {
127 static const struct token *match_token(const char *, const struct token *,
129 static void show_valid_args(const struct token *);
135 const struct token *table = t_main; in parse()
136 const struct token *match; in parse()
164 static const struct token *
165 match_token(const char *word, const struct token *table, in match_token()
169 const struct token *t = NULL; in match_token()
253 show_valid_args(const struct token *table) in show_valid_args()