Lines Matching refs:token

51 struct token {  struct
55 const struct token *next; argument
58 static const struct token t_main[];
59 static const struct token t_reset[];
60 static const struct token t_reset_id[];
61 static const struct token t_log[];
62 static const struct token t_load[];
63 static const struct token t_ca[];
64 static const struct token t_ca_pass[];
65 static const struct token t_ca_pass_val[];
66 static const struct token t_ca_export[];
67 static const struct token t_ca_ex_peer[];
68 static const struct token t_ca_ex_pass[];
69 static const struct token t_ca_modifiers[];
70 static const struct token t_ca_cert[];
71 static const struct token t_ca_cert_extusage[];
72 static const struct token t_ca_cert_modifiers[];
73 static const struct token t_ca_key[];
74 static const struct token t_ca_key_modifiers[];
75 static const struct token t_ca_key_path[];
76 static const struct token t_show[];
77 static const struct token t_show_ca[];
78 static const struct token t_show_ca_modifiers[];
79 static const struct token t_show_ca_cert[];
80 static const struct token t_opt_path[];
82 static const struct token t_main[] = {
97 static const struct token t_log[] = {
103 static const struct token t_reset[] = {
113 static const struct token t_reset_id[] = {
118 static const struct token t_load[] = {
123 static const struct token t_ca[] = {
128 static const struct token t_ca_modifiers[] = {
138 static const struct token t_ca_pass_val[] = {
143 static const struct token t_ca_pass[] = {
149 static const struct token t_ca_export[] = {
156 static const struct token t_ca_ex_peer[] = {
161 static const struct token t_ca_ex_pass[] = {
166 static const struct token t_opt_path[] = {
172 static const struct token t_ca_cert[] = {
178 static const struct token t_ca_cert_modifiers[] = {
187 static const struct token t_ca_cert_extusage[] = {
195 static const struct token t_ca_key[] = {
201 static const struct token t_ca_key_modifiers[] = {
209 static const struct token t_ca_key_path[] = {
214 static const struct token t_show[] = {
222 static const struct token t_show_ca[] = {
227 static const struct token t_show_ca_modifiers[] = {
232 static const struct token t_show_ca_cert[] = {
241 const struct token *match_token(char *, const struct token []);
242 void show_valid_args(const struct token []);
248 const struct token *table = t_main; in parse()
249 const struct token *match; in parse()
295 const struct token *
296 match_token(char *word, const struct token table[]) in match_token()
299 const struct token *t = NULL; in match_token()
384 show_valid_args(const struct token table[]) in show_valid_args()