Lines Matching defs:optarg
46 printer_enum_devices(uint32 * id, char *optarg)
50 char *pos = optarg;
66 if (*optarg == ':')
67 optarg++;
69 while ((pos = next_arg(optarg, ',')) && *id < RDPDR_MAX_DEVICES)
82 pos2 = next_arg(optarg, '=');
83 if (*optarg == (char) 0x00)
87 pprinter_data->printer = xmalloc(strlen(optarg) + 1);
88 strcpy(pprinter_data->printer, optarg);
106 optarg = pos;