Lines Matching defs:option
75 {OPTION, "option"},
302 * this function searches the given option list for the named option and
303 * returns a pointer to the option rec if found. If not found, it returns
319 * this function searches the given option list for the named option. If
320 * found and the option has a parameter, a pointer to the parameter is
321 * returned. If the option does not have a parameter an empty string is
322 * returned. If the option is not found, a NULL is returned.
363 /* the 2 given lists are merged. If an option with the same name is present in
364 * both, the option from the user list - specified in the second argument -
427 XF86OptionPtr option, cnew, old;
439 option = xf86newOption(name, xf86_lex_val.str);
440 option->opt_comment = comment;
442 option->opt_comment = xf86addComment(option->opt_comment, xf86_lex_val.str);
450 option = xf86newOption(name, NULL);
451 option->opt_comment = comment;
453 option->opt_comment = xf86addComment(option->opt_comment, xf86_lex_val.str);
466 free(option->opt_name);
467 TestFree(option->opt_val);
468 TestFree(option->opt_comment);
469 free(option);
472 cnew = option;