HomeSort by relevance Sort by last modified time
    Searched defs:getopt (Results 1 - 25 of 29) sorted by null

1 2

  /external/skia/bench/
bench_compare.py 7 import getopt namespace
54 opts, args = getopt.getopt(sys.argv[1:], "f:o:n:h")
55 except getopt.GetoptError, err:
  /external/qemu/
offset_layout.py 5 import getopt namespace
33 options, args = getopt.getopt(sys.argv[1:], "", ["dx=", "dy=", "px=", "py=", "kx=", "ky="])
49 except getopt.error, msg:
  /bionic/libc/kernel/tools/
clean_header.py 4 import sys, cpp, kernel, glob, os, re, getopt namespace
102 optlist, args = getopt.getopt( sys.argv[1:], 'uvk:d:' )
find_users.py 8 import sys, cpp, glob, os, re, getopt namespace
31 optlist, args = getopt.getopt( sys.argv[1:], 'v' )
update_all.py 3 import sys, cpp, kernel, glob, os, re, getopt, clean_header namespace
28 optlist, args = getopt.getopt( sys.argv[1:], '' )
find_headers.py 8 import sys, cpp, glob, os, re, getopt, kernel namespace
39 optlist, args = getopt.getopt( sys.argv[1:], 'vc:d:a:k:' )
  /external/blktrace/btt/
bno_plot.py 41 import getopt, glob, os, sys, tempfile namespace
62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts)
63 except getopt.error, msg:
btt_plot.py 64 import getopt, glob, os, sys namespace
208 (opts, args) = getopt.getopt(args[1:], s_opts, l_opts)
209 except getopt.error, msg:
  /external/icu4c/tools/
icu-svnprops-check.py 28 import getopt namespace
192 opts, args = getopt.getopt(argv, "fh", ("fix", "help"))
193 except getopt.GetoptError:
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 32 import getopt namespace
75 opts, args = getopt.getopt(argv[1:],
78 except getopt.GetoptError, e:
  /external/icu4c/stubdata/
icu_dat_generator.py 36 import getopt namespace
235 opts, args = getopt.getopt(sys.argv[1:], "hv", ["help", "verbose"])
236 except getopt.error:
  /system/extras/tests/sdcard/
plot_sdcard.py 39 import getopt namespace
309 (optlist, args) = getopt.getopt(argv[1:],
311 except getopt.GetoptError, err:
  /build/tools/
java-event-log-tags.py 27 import getopt namespace
37 opts, args = getopt.getopt(sys.argv[1:], "ho:")
38 except getopt.GetoptError, err:
merge-event-log-tags.py 28 import getopt namespace
47 opts, args = getopt.getopt(sys.argv[1:], "ho:m:")
48 except getopt.GetoptError, err:
  /development/build/tools/
mk_sources_zip.py 21 import getopt namespace
91 opts, args = getopt.getopt(argv[1:],
94 except getopt.GetoptError, e:
  /development/scripts/
stack 7 import getopt namespace
361 options, arguments = getopt.getopt(sys.argv[1:], "",
366 except getopt.GetoptError, unused_error:
  /external/bison/lib/
getopt_.h 1 /* Declarations for getopt.
29 headers that might declare getopt so that they will not cause
39 # undef getopt macro
49 # define getopt __GETOPT_ID (getopt) macro
65 but it caused redefinition warnings if both unistd.h and getopt.h were
66 included, since unistd.h includes getopt.h having previously defined
108 /* For communication from `getopt' to the caller.
109 When `getopt' finds an option that takes an argument,
118 and for communication between successive calls to `getopt'
    [all...]
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
28 #include "getopt.h"
54 /* Unlike standard Unix `getopt', functions like `getopt_long'
61 Using `getopt' or setting the environment variable POSIXLY_CORRECT
70 /* For communication from `getopt' to the caller.
71 When `getopt' finds an option that takes an argument,
80 and for communication between successive calls to `getopt'.
82 On entry to `getopt', zero means this is the first call; initialize.
84 When `getopt' returns -1, this is the index of the first of th
1116 getopt (int argc, char *const *argv, const char *optstring) function
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt.in.h 1 /* Declarations for getopt.
28 headers that might declare getopt so that they will not cause
38 # undef getopt macro
48 # define getopt __GETOPT_ID (getopt) macro
64 but it caused redefinition warnings if both unistd.h and getopt.h were
65 included, since unistd.h includes getopt.h having previously defined
107 /* For communication from `getopt' to the caller.
108 When `getopt' finds an option that takes an argument,
117 and for communication between successive calls to `getopt'
    [all...]
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
27 #include "getopt.h"
49 /* Unlike standard Unix `getopt', functions like `getopt_long'
56 Using `getopt' or setting the environment variable POSIXLY_CORRECT
65 /* For communication from `getopt' to the caller.
66 When `getopt' finds an option that takes an argument,
75 and for communication between successive calls to `getopt'.
77 On entry to `getopt', zero means this is the first call; initialize.
79 When `getopt' returns -1, this is the index of the first of th
1111 getopt (int argc, char *const *argv, const char *optstring) function
    [all...]
  /external/bluetooth/bluez/test/
apitest 8 import getopt namespace
102 opts, args = getopt.getopt(argv, "hli:")
103 except getopt.GetoptError:
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
common.c 204 int getopt(int argc, char *const argv[], const char *optstring) function
  /external/wpa_supplicant_8/src/utils/
common.c 258 int getopt(int argc, char *const argv[], const char *optstring) function
  /bionic/libc/unistd/
getopt_long.c 61 #include <getopt.h>
66 #define REPLACE_GETOPT /* use this getopt as the system getopt(3) */
74 int optreset; /* reset getopt */
492 * getopt --
495 * [eventually this will replace the BSD getopt]
498 getopt(int nargc, char * const *nargv, const char *options) function
503 * the BSD getopt(3) (unlike GNU) has never done this.
505 * Furthermore, since many privileged programs call getopt()
  /external/grub/lib/
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
28 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
71 contain conflicting prototypes for getopt. */
94 /* This version of `getopt' appears to the caller like standard Unix `getopt'
98 As `getopt' works, it permutes the elements of ARGV so that,
108 #include "getopt.h"
110 /* For communication from `getopt' to the caller.
111 When `getopt' finds an option that takes an argument
970 getopt (argc, argv, optstring) function
    [all...]

Completed in 826 milliseconds

1 2