HomeSort by relevance Sort by last modified time
    Searched refs:short_opts (Results 1 - 19 of 19) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
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/cpython2/Lib/distutils/
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/
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/u-boot/arch/sandbox/cpu/
os.c 210 static char *short_opts; variable
224 if (short_opts || long_opts)
231 short_opts = os_malloc(sizeof(*short_opts) * num_options * 2 + 1);
233 if (!short_opts || !long_opts)
251 short_opts[si++] = long_opts[i].val = sb_opt[i]->flag_short;
253 short_opts[si++] = ':';
257 short_opts[si] = '\0';
267 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
  /external/vboot_reference/futility/
cmd_load_fmap.c 51 static char *short_opts = ":o:"; variable
103 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) {
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) {
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) {
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) {
  /external/dtc/
util.h 210 * @param short_opts The string of short options
215 const char *short_opts,
util.c 422 const char *short_opts,
435 "Options: -[%s]\n", synopsis, short_opts);
  /external/u-boot/scripts/dtc/
util.h 213 * @param short_opts The string of short options
218 const char *short_opts,
util.c 422 const char *short_opts,
435 "Options: -[%s]\n", synopsis, short_opts);
  /external/bcc/src/lua/src/
squish.lua 3 local short_opts = { v = "verbose", vv = "very_verbose", o = "output", q = "quiet", qq = "very_quiet", g = "debug" }
9 name = (short_opts[name] or name):gsub("%-+", "_");
  /external/libxcam/tests/
test-pipe-manager.cpp 225 const char *short_opts = "ph"; local
240 while ((opt = getopt_long (argc, argv, short_opts, long_opts, NULL)) != -1) {
test-device-manager.cpp 374 const char *short_opts = "sca:n:m:f:W:H:d:b:pi:e:r:h"; local
393 while ((opt = getopt_long(argc, argv, short_opts, long_opts, NULL)) != -1) {
  /external/nos/host/android/manual_tests/
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) {
  /external/nos/host/generic/citadel/updater/
updater.cpp 114 const char *short_opts = ":hvlV:fF:c"; member in namespace:__anon34578
1247 short_opts, long_opts, &idx)) != -1) {
    [all...]
  /external/u-boot/tools/
fdtgrep.c 1001 const char *short_opts, struct option const long_opts[],
1013 "Options: -[%s]\n", synopsis, short_opts);
  /external/autotest/contrib/
coverage.py 354 short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
356 options, args = getopt.getopt(argv, short_opts, long_opts)
    [all...]

Completed in 2489 milliseconds