Lines Matching refs:token
47 struct token { struct
51 const struct token *next; argument
56 static const struct token t_main[];
57 static const struct token t_session[];
58 static const struct token t_clear[];
59 static const struct token t_monitor[];
60 static const struct token t_filter[];
61 static const struct token t_ppp_id[];
62 static const struct token t_address[];
63 static const struct token t_interface[];
64 static const struct token t_protocol[];
65 static const struct token t_realm[];
66 static const struct token t_username[];
68 static const struct token t_main[] = {
75 static const struct token t_session[] = {
82 static const struct token t_clear[] = {
93 static const struct token t_monitor[] = {
104 static const struct token t_filter[] = {
115 static const struct token t_ppp_id[] = {
119 static const struct token t_address[] = {
123 static const struct token t_interface[] = {
127 static const struct token t_protocol[] = {
131 static const struct token t_realm[] = {
135 static const struct token t_username[] = {
140 static const struct token *match_token(char *, const struct token []);
141 static void show_valid_args(const struct token []);
146 const struct token *table = t_main; in parse()
147 const struct token *match; in parse()
175 static const struct token *
176 match_token(char *word, const struct token table[]) in match_token()
180 const struct token *t = NULL; in match_token()
286 show_valid_args(const struct token table[]) in show_valid_args()