Lines Matching defs:newopt
981 char *newopt = NULL;
985 newopt = strdup(opt);
986 if (newopt == NULL)
987 return (newopt);
997 free(newopt);
1001 newopt = calloc(1, size);
1002 if (newopt != NULL)
1003 (void) snprintf(newopt, size, "%s,name=%s", opt, name);
1006 opt = newopt;
1013 newopt = calloc(1, size);
1014 if (newopt != NULL)
1015 (void) snprintf(newopt, size, "%s,%s", opt, propstr);
1017 opt = newopt;
1049 char *newopt;
1057 newopt = add_resources(opts, share);
1059 opts = newopt;