/external/u-boot/arch/sandbox/cpu/ |
D | os.c | 210 static char *short_opts; variable 224 if (short_opts || long_opts) in os_parse_args() 231 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1); in os_parse_args() 233 if (!short_opts || !long_opts) in os_parse_args() 251 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short; in os_parse_args() 253 short_opts[si++] = ':'; in os_parse_args() 257 short_opts[si] = '\0'; in os_parse_args() 267 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) { in os_parse_args()
|
/external/python/cpython2/Lib/distutils/ |
D | fancy_getopt.py | 75 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/python/cpython3/Lib/distutils/ |
D | fancy_getopt.py | 70 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/vboot_reference/futility/ |
D | cmd_load_fmap.c | 51 static char *short_opts = ":o:"; variable 103 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_load_fmap()
|
D | cmd_gbb_utility.c | 81 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()
|
D | cmd_show.c | 585 static char *short_opts = ":f:k:t"; variable 625 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_show()
|
D | cmd_sign.c | 699 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/bcc/src/lua/src/ |
D | squish.lua | 3 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/ |
D | util.c | 422 const char *short_opts, in util_usage() argument 435 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
|
D | util.h | 215 const char *short_opts,
|
/external/u-boot/scripts/dtc/ |
D | util.c | 422 const char *short_opts, in util_usage() argument 435 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
|
D | util.h | 218 const char *short_opts,
|
/external/libxcam/tests/ |
D | test-pipe-manager.cpp | 225 const char *short_opts = "ph"; in main() local 240 while ((opt = getopt_long (argc, argv, short_opts, long_opts, NULL)) != -1) { in main()
|
D | test-device-manager.cpp | 374 const char *short_opts = "sca:n:m:f:W:H:d:b:pi:e:r:h"; in main() local 393 while ((opt = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) { in main()
|
/external/python/cpython3/Lib/ |
D | optparse.py | 353 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/python/cpython2/Lib/ |
D | optparse.py | 347 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/nos/host/android/manual_tests/ |
D | test_citadel.c | 75 static char *short_opts = ":hi:p:m:abv"; variable 963 while ((i = getopt_long(argc, argv, short_opts, long_opts, &idx)) != -1) { in main()
|
/external/u-boot/tools/ |
D | fdtgrep.c | 1001 const char *short_opts, struct option const long_opts[], in util_usage() argument 1013 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
|
/external/nos/host/generic/citadel/updater/ |
D | updater.cpp | 114 const char *short_opts = ":hvlV:fF:c"; variable 1247 short_opts, long_opts, &idx)) != -1) { in main()
|
/external/autotest/contrib/ |
D | coverage.py | 354 short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '') 356 options, args = getopt.getopt(argv, short_opts, long_opts)
|