Lines Matching defs:opt
57 static char *is_option(char *opt_string, char *opt, int *errp);
411 * the option passed into the function. If the option (opt) to search for
414 * opt parameter to have the "=" character appended when searching for options
428 fs_parse_optlist_for_option(char *optlist, char *opt, int *errp) {
448 } else if ((return_value = is_option(token, opt, errp)) != NULL) {
465 is_option(token, opt, errp)) != NULL) {
845 is_option(char *opt_string, char *opt, int *errp) {
851 found_equalsign = strstr(opt, equalsign);
858 if (strcmp(opt_string, opt) == 0) {
862 return_val = strdup(opt);
875 opt_found = strstr(opt_string, opt);
885 opt_len = strlen(opt);