Lines Matching refs:token

51 struct token {
55 const struct token *next;
65 static const struct token t_test[];
66 static const struct token t_secret[];
67 static const struct token t_username[];
68 static const struct token t_test_opts[];
69 static const struct token t_password[];
70 static const struct token t_port[];
71 static const struct token t_method[];
72 static const struct token t_nas_port[];
73 static const struct token t_tries[];
74 static const struct token t_interval[];
75 static const struct token t_maxwait[];
76 static const struct token t_yesno[];
77 static const struct token t_ipcp[];
78 static const struct token t_ipcp_flags[];
79 static const struct token t_ipcp_session_seq[];
81 static const struct token t_main[] = {
87 static const struct token t_test[] = {
92 static const struct token t_secret[] = {
97 static const struct token t_username[] = {
102 static const struct token t_test_opts[] = {
115 static const struct token t_password[] = {
120 static const struct token t_port[] = {
125 static const struct token t_method[] = {
130 static const struct token t_nas_port[] = {
135 static const struct token t_tries[] = {
140 static const struct token t_interval[] = {
145 static const struct token t_maxwait[] = {
150 static const struct token t_yesno[] = {
156 static const struct token t_ipcp[] = {
165 static const struct token t_ipcp_flags[] = {
171 static const struct token t_ipcp_session_seq[] = {
176 static const struct token *match_token(char *, const struct token []);
177 static void show_valid_args(const struct token []);
182 const struct token *table = t_main;
183 const struct token *match;
215 static const struct token *
216 match_token(char *word, const struct token table[])
219 const struct token *t = NULL;
408 show_valid_args(const struct token table[])