Home
last modified time | relevance | path

Searched refs:short_option (Results 1 – 4 of 4) sorted by relevance

/third_party/alsa-utils/alsactl/
Dalsactl.c257 char *short_option; in main() local
265 short_option = malloc(128); in main()
266 if (short_option == NULL) { in main()
280 short_option[k++] = o->val; in main()
282 short_option[k++] = ':'; in main()
284 short_option[k] = '\0'; in main()
289 if ((c = getopt_long(argc, argv, short_option, long_option, in main()
391 free(short_option); in main()
392 short_option = NULL; in main()
483 free(short_option); in main()
/third_party/weston/shared/
Doption-parser.c117 short_option(const struct weston_option *options, int count, char *arg) in short_option() function
187 if (short_option(options, count, argv[i])) in parse_options()
/third_party/python/Lib/distutils/
Dfancy_getopt.py90 def add_option(self, long_option, short_option=None, help_string=None): argument
95 option = (long_option, short_option, help_string)
/third_party/python/Doc/distutils/
Dapiref.rst1362 Wrapper function. *options* is a list of ``(long_option, short_option,
1378 The option_table is a list of 3-tuples: ``(long_option, short_option,
1382 *short_option* should just be a single character, no ``':'`` in any case.
1383 *short_option* should be ``None`` if a *long_option* doesn't have a
1384 corresponding *short_option*. All option tuples must have long options.