Lines Matching refs:opt_tokens
676 static const match_table_t opt_tokens = { variable
751 token = match_token(p, opt_tokens, args); in nvmf_parse_options()
1177 for (i = 0; i < ARRAY_SIZE(opt_tokens); i++) { in nvmf_check_required_opts()
1178 if ((opt_tokens[i].token & required_opts) && in nvmf_check_required_opts()
1179 !(opt_tokens[i].token & opts->mask)) { in nvmf_check_required_opts()
1181 opt_tokens[i].pattern); in nvmf_check_required_opts()
1240 for (i = 0; i < ARRAY_SIZE(opt_tokens); i++) { in nvmf_check_allowed_opts()
1241 if ((opt_tokens[i].token & opts->mask) && in nvmf_check_allowed_opts()
1242 (opt_tokens[i].token & ~allowed_opts)) { in nvmf_check_allowed_opts()
1244 opt_tokens[i].pattern); in nvmf_check_allowed_opts()
1402 for (idx = 0; idx < ARRAY_SIZE(opt_tokens); idx++) { in __nvmf_concat_opt_tokens()
1403 tok = &opt_tokens[idx]; in __nvmf_concat_opt_tokens()