Searched refs:optionstr (Results 1 – 3 of 3) sorted by relevance
151 char *optionstr; in parse_opts() local176 optionstr = malloc(optstrlen); in parse_opts()177 if (!optionstr) in parse_opts()181 optionstr[0] = '\0'; in parse_opts()184 strcat(optionstr, std_options[i].optstr); in parse_opts()188 if (strchr(optionstr, user_optarr[i].option[0]) == NULL) in parse_opts()189 strcat(optionstr, user_optarr[i].option); in parse_opts()194 while ((opt = getopt(ac, av, optionstr)) > 0) { in parse_opts()258 free(optionstr); in parse_opts()
211 public AgentOptions(final String optionstr) { in AgentOptions() argument213 if (optionstr != null && optionstr.length() > 0) { in AgentOptions()214 for (final String entry : OPTION_SPLIT.split(optionstr)) { in AgentOptions()218 "Invalid agent option syntax \"%s\".", optionstr)); in AgentOptions()
373 def optionxform(self, optionstr): argument374 return optionstr.lower()