Searched defs:getopt (Results 1 - 25 of 27) sorted by relevance

12

/external/qemu/
H A Doffset_layout.py5 import getopt namespace
33 options, args = getopt.getopt(sys.argv[1:], "", ["dx=", "dy=", "px=", "py=", "kx=", "ky="])
49 except getopt.error, msg:
/external/skia/bench/
H A Dbench_compare.py8 import getopt namespace
58 opts, _ = getopt.getopt(sys.argv[1:], "f:o:n:s:ht", ['match='])
59 except getopt.GetoptError, err:
H A Dbench_analyze.py15 import getopt namespace
188 opts, _ = getopt.getopt(sys.argv[1:], 'a:b:o:p:')
189 except getopt.GetoptError, err:
H A Dbench_graph_svg.py7 import getopt namespace
286 opts, _ = getopt.getopt(sys.argv[1:]
289 except getopt.GetoptError, err:
/external/blktrace/btt/
H A Dbno_plot.py41 import getopt, glob, os, sys, tempfile namespace
62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts)
63 except getopt.error, msg:
H A Dbtt_plot.py64 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/
H A Dicu-svnprops-check.py28 import getopt namespace
192 opts, args = getopt.getopt(argv, "fh", ("fix", "help"))
193 except getopt.GetoptError:
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
H A Dp2p_disconnect.py11 import getopt namespace
122 options, args = getopt.getopt(sys.argv[1:],"hi:w:")
124 except getopt.GetoptError:
H A Dp2p_flush.py12 import getopt namespace
122 options, args = getopt.getopt(sys.argv[1:],"hi:w:")
124 except getopt.GetoptError:
H A Dp2p_listen.py12 import getopt namespace
123 options, args = getopt.getopt(sys.argv[1:],"hi:t:w:")
125 except getopt.GetoptError:
H A Dp2p_find.py12 import getopt namespace
133 options, args = getopt.getopt(sys.argv[1:],"hi:t:w:")
135 except getopt.GetoptError:
H A Dp2p_group_add.py9 import getopt namespace
169 options, args = getopt.getopt(sys.argv[1:],"hi:p:f:o:w:")
171 except getopt.GetoptError:
H A Dp2p_invite.py9 import getopt namespace
151 options, args = getopt.getopt(sys.argv[1:],"hi:o:w:a:")
153 except getopt.GetoptError:
H A Dp2p_stop_find.py10 import getopt namespace
127 options, args = getopt.getopt(sys.argv[1:],"ht:i:w:")
129 except getopt.GetoptError:
H A Dp2p_connect.py11 import getopt namespace
236 options, args = getopt.getopt(sys.argv[1:],"hi:m:a:p:g:w:")
238 except getopt.GetoptError:
/external/icu4c/stubdata/
H A Dicu_dat_generator.py25 import getopt namespace
220 opts, args = getopt.getopt(sys.argv[1:], "hv", ["help", "verbose"])
221 except getopt.error:
/external/bison/darwin-lib/
H A Dgetopt.h2 /* Declarations for getopt.
29 <getopt.h>; our definitions will be present soon enough. */
32 # include_next <getopt.h>
45 headers that might declare getopt so that they will not cause
46 confusion if included after this file (if the system had <getopt.h>,
58 # undef getopt macro
69 # define getopt __GETOPT_ID (getopt) macro
87 but it caused redefinition warnings if both unistd.h and getopt.h were
88 included, since unistd.h includes getopt
[all...]
/external/bison/lib/
H A Dgetopt.in.h1 /* Declarations for getopt.
28 <getopt.h>; our definitions will be present soon enough. */
44 headers that might declare getopt so that they will not cause
45 confusion if included after this file (if the system had <getopt.h>,
57 # undef getopt macro
68 # define getopt __GETOPT_ID (getopt) macro
86 but it caused redefinition warnings if both unistd.h and getopt.h were
87 included, since unistd.h includes getopt.h having previously defined
131 /* For communication from 'getopt' t
[all...]
H A Dgetopt.c2 NOTE: getopt is part of the C library, so if you don't know what
27 #include "getopt.h"
45 /* This version of 'getopt' appears to the caller like standard Unix 'getopt'
53 Using 'getopt' or setting the environment variable POSIXLY_CORRECT
62 /* For communication from 'getopt' to the caller.
63 When 'getopt' finds an option that takes an argument,
72 and for communication between successive calls to 'getopt'.
74 On entry to 'getopt', zero means this is the first call; initialize.
76 When 'getopt' return
1157 getopt (int argc, char *const *argv, const char *optstring) function
[all...]
/external/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py11 import getopt namespace
360 opts, args = getopt.getopt(sys.argv[1:], "d", ["demangle"])
/external/grub/lib/
H A Dgetopt.c2 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,
120 and for communication between successive calls to `getopt'
970 getopt (argc, argv, optstring) function
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.c252 int getopt(int argc, char *const argv[], const char *optstring) function
/external/wpa_supplicant_8/src/utils/
H A Dcommon.c252 int getopt(int argc, char *const argv[], const char *optstring) function
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.c252 int getopt(int argc, char *const argv[], const char *optstring) function
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags.py64 At bottom, this module calls getopt(), so getopt functionality is
128 -- as in getopt(), terminates flag-processing
391 import getopt namespace
829 # Set if we should use new style gnu_getopt rather than getopt when parsing
836 See http://docs.python.org/library/getopt.html#getopt.gnu_getopt
1193 Program Argument Syntax Conventions, using getopt:
1219 # --nomybool, --mybool=(true|false|1|0). getopt does not support
1245 # and long options that will be passed to getopt
[all...]

Completed in 299 milliseconds

12