Home
last modified time | relevance | path

Searched refs:short_opts (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython3/Lib/distutils/
Dfancy_getopt.py70 self.short_opts = []
139 self.short_opts = []
207 self.short_opts.append(short)
231 short_opts = ' '.join(self.short_opts)
233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
/external/python/cpython2/Lib/distutils/
Dfancy_getopt.py75 self.short_opts = []
152 self.short_opts = []
226 self.short_opts.append(short)
255 short_opts = string.join(self.short_opts)
257 opts, args = getopt.getopt(args, short_opts, self.long_opts)
/external/vboot_reference/futility/
Dcmd_load_fmap.c51 static char *short_opts = ":o:"; variable
103 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_load_fmap()
Dcmd_gbb_utility.c81 static char *short_opts = ":gsc:o:k:b:r:"; variable
372 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_gbb_utility()
Dcmd_show.c585 static char *short_opts = ":f:k:t"; variable
625 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_show()
Dcmd_sign.c699 static char *short_opts = ":s:b:k:S:B:v:f:d:l:"; variable
716 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_sign()
/external/igt-gpu-tools/lib/
Digt_core.h270 #define igt_main_args(short_opts, long_opts, help_str, opt_handler, handler_data) \ argument
274 short_opts, long_opts, help_str, \
326 #define igt_simple_main_args(short_opts, long_opts, help_str, opt_handler, handler_data) \ argument
330 short_opts, long_opts, help_str, \
Digt_core.c752 char *short_opts; in common_init() local
829 ret = asprintf(&short_opts, "%s%s", in common_init()
834 while ((c = getopt_long(*argc, argv, short_opts, combined_opts, in common_init()
889 free(short_opts); in common_init()
/external/bcc/src/lua/src/
Dsquish.lua3 local short_opts = { v = "verbose", vv = "very_verbose", o = "output", q = "quiet", qq = "very_quie…
9 name = (short_opts[name] or name):gsub("%-+", "_");
/external/dtc/
Dutil.h198 const char *short_opts,
Dutil.c416 const char *short_opts, in util_usage() argument
429 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
/external/python/cpython2/Lib/
Doptparse.py347 short_opts = [self._short_opt_fmt % (sopt, metavar)
352 short_opts = option._short_opts
356 opts = short_opts + long_opts
358 opts = long_opts + short_opts
/external/python/cpython3/Lib/
Doptparse.py353 short_opts = [self._short_opt_fmt % (sopt, metavar)
358 short_opts = option._short_opts
362 opts = short_opts + long_opts
364 opts = long_opts + short_opts
/external/igt-gpu-tools/tools/
Dintel_residency.c617 char short_opts[] = "d:lrbw:c:i:fsn:"; in parse_opts() local
633 opt = getopt_long(argc, argv, short_opts, long_opts, NULL); in parse_opts()
Dintel_infoframes.c1089 char short_opts[] = "dc:k:q:nNxXp:P:t:f:h"; in main() local
1129 opt = getopt_long(argc, argv, short_opts, long_opts, NULL); in main()
/external/autotest/contrib/
Dcoverage.py354 short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
356 options, args = getopt.getopt(argv, short_opts, long_opts)
/external/flac/src/flac/
Dmain.c621 const char *short_opts = "0123456789aA:b:cdefFhHl:mMo:pP:q:r:sS:tT:vVw"; in parse_options() local
623 …while ((short_option = share__getopt_long(argc, argv, short_opts, long_options_, &option_index)) !… in parse_options()