Lines Matching refs:opt
378 xf86OptionListFree(XF86OptionPtr opt) in xf86OptionListFree() argument
380 xf86optionListFree(opt); in xf86OptionListFree()
384 xf86OptionName(XF86OptionPtr opt) in xf86OptionName() argument
386 return xf86optionName(opt); in xf86OptionName()
390 xf86OptionValue(XF86OptionPtr opt) in xf86OptionValue() argument
392 return xf86optionValue(opt); in xf86OptionValue()
434 XF86OptionPtr opt; in xf86MarkOptionUsedByName() local
436 opt = xf86findOption(options, name); in xf86MarkOptionUsedByName()
437 if (opt != NULL) in xf86MarkOptionUsedByName()
438 opt->opt_used = TRUE; in xf86MarkOptionUsedByName()
453 XF86OptionPtr opt; in xf86CheckIfOptionUsedByName() local
455 opt = xf86findOption(options, name); in xf86CheckIfOptionUsedByName()
456 if (opt != NULL) in xf86CheckIfOptionUsedByName()
457 return opt->opt_used; in xf86CheckIfOptionUsedByName()
463 xf86ShowUnusedOptions(int scrnIndex, XF86OptionPtr opt) in xf86ShowUnusedOptions() argument
465 while (opt) { in xf86ShowUnusedOptions()
466 if (opt->opt_name && !opt->opt_used) { in xf86ShowUnusedOptions()
468 opt->opt_name); in xf86ShowUnusedOptions()
470 opt = opt->list.next; in xf86ShowUnusedOptions()
659 OptionInfoRec opt; in ParseOptionValue() local
680 if (GetBoolValue(&opt, s)) { in ParseOptionValue()
681 p->value.bool = !opt.value.bool; in ParseOptionValue()