Lines Matching defs:opt
229 xf86optionListDup(XF86OptionPtr opt)
234 while (opt) {
235 _val = opt->opt_val ? strdup(opt->opt_val) : NULL;
236 newopt = xf86addNewOption(newopt, strdup(opt->opt_name), _val);
237 newopt->opt_used = opt->opt_used;
238 if (opt->opt_comment)
239 newopt->opt_comment = strdup(opt->opt_comment);
240 opt = opt->list.next;
246 xf86optionListFree(XF86OptionPtr opt)
250 while (opt) {
251 TestFree(opt->opt_name);
252 TestFree(opt->opt_val);
253 TestFree(opt->opt_comment);
254 prev = opt;
255 opt = opt->list.next;
261 xf86optionName(XF86OptionPtr opt)
263 if (opt)
264 return opt->opt_name;
269 xf86optionValue(XF86OptionPtr opt)
271 if (opt)
272 return opt->opt_val;
279 XF86OptionPtr opt;
281 opt = calloc(1, sizeof(*opt));
282 if (!opt)
285 opt->opt_used = 0;
286 opt->list.next = 0;
287 opt->opt_name = name;
288 opt->opt_val = value;
290 return opt;