Searched refs:newopt (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/parser/
H A DFlags.c235 XF86OptionPtr newopt = NULL; local in function:xf86optionListDup
241 newopt = xf86addNewOption(newopt, strdup(opt->opt_name), val);
242 newopt->opt_used = opt->opt_used;
244 newopt->opt_comment = strdup(opt->opt_comment);
247 return newopt;
/xsrc/external/mit/xorg-server/dist/hw/xfree86/parser/
H A DFlags.c231 XF86OptionPtr newopt = NULL; local in function:xf86optionListDup
236 newopt = xf86addNewOption(newopt, strdup(opt->opt_name), _val);
237 newopt->opt_used = opt->opt_used;
239 newopt->opt_comment = strdup(opt->opt_comment);
242 return newopt;
/xsrc/external/mit/xorg-server.old/dist/hw/kdrive/src/
H A Dkinput.c1046 InputOption *newopt = NULL, **tmpo = NULL; local in function:KdGetOptions
1049 newopt = calloc(1, sizeof (InputOption));
1050 if (!newopt)
1055 *tmpo = newopt;
1060 newopt->key = (char *)malloc(tam_key);
1061 strncpy(newopt->key, string, tam_key);
1062 newopt->key[tam_key] = '\0';
1063 newopt->value = strdup(strchr(string, '=') + 1);
1067 newopt->key = strdup(string);
1068 newopt
[all...]
/xsrc/external/mit/xorg-server/dist/hw/kdrive/src/
H A Dkinput.c838 InputOption *newopt = NULL; local in function:KdGetOptions
857 newopt = input_option_new(*options, key, value);
858 if (newopt)
859 *options = newopt;
865 return (newopt != NULL);

Completed in 6 milliseconds