Home
last modified time | relevance | path

Searched refs:getopt (Results 1 – 25 of 138) sorted by relevance

123456

/external/bison/m4/
Dgetopt.m41 # getopt.m4 serial 12
7 # The getopt module assume you want GNU getopt, with getopt_long etc,
8 # rather than vanilla POSIX getopt. This means your your code should
9 # always include <getopt.h> for the getopt prototypes.
13 AC_LIBOBJ([getopt])
21 GETOPT_H=getopt.h
23 [Define to rpl_ if the getopt replacement functions and variables
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
35 AC_CHECK_FUNCS([getopt_long_only], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
[all …]
/external/bison/lib/
Dgetopt_.h39 # undef getopt
49 # define getopt __GETOPT_ID (getopt) macro
203 extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
Dgnulib.mk16 getopt.h: getopt_.h
19 MOSTLYCLEANFILES += getopt.h getopt.h-t
DMakefile.in42 getopt.c getopt1.c hard-locale.c hard-locale.h hash.c hash.h \
55 $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/gettext_gl.m4 \
250 MOSTLYCLEANFILES = getopt.h getopt.h-t stdbool.h stdbool.h-t unistd.h
379 @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt.Po@am__quote@
607 getopt.h: getopt_.h
DMakefile42 getopt.c getopt1.c hard-locale.c hard-locale.h hash.c hash.h \
55 $(top_srcdir)/m4/getopt.m4 $(top_srcdir)/m4/gettext_gl.m4 \
250 MOSTLYCLEANFILES = getopt.h getopt.h-t stdbool.h stdbool.h-t unistd.h
379 include $(DEPDIR)/getopt.Po
607 getopt.h: getopt_.h
/external/blktrace/btt/
Dbno_plot.py41 import getopt, glob, os, sys, tempfile
62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts)
63 except getopt.error, msg:
Dbtt_plot.py64 import getopt, glob, os, sys
208 (opts, args) = getopt.getopt(args[1:], s_opts, l_opts)
209 except getopt.error, msg:
/external/grub/lib/
Dgetopt.h106 extern int getopt (int argc, char *const *argv, const char *shortopts);
108 extern int getopt ();
122 extern int getopt ();
DMakefile.am6 libcommon_a_SOURCES = getopt.c getopt1.c getopt.h device.c device.h
DMakefile.in56 am_libcommon_a_OBJECTS = getopt.$(OBJEXT) getopt1.$(OBJEXT) \
184 libcommon_a_SOURCES = getopt.c getopt1.c getopt.h device.c device.h
233 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Po@am__quote@
/external/e2fsprogs/include/nonunix/
Dgetopt.h108 extern int getopt (int argc, char *const *argv, const char *shortopts);
110 extern int getopt ();
124 extern int getopt ();
/external/qemu/
Doffset_layout.py5 import getopt
33 options, args = getopt.getopt(sys.argv[1:], "", ["dx=", "dy=", "px=", "py=", "kx=", "ky="])
49 except getopt.error, msg:
Dqemu-io.c218 while ((c = getopt(argc, argv, "Cl:pP:qs:v")) != EOF) { in read_f()
386 while ((c = getopt(argc, argv, "CP:qv")) != EOF) { in readv_f()
537 while ((c = getopt(argc, argv, "CpP:q")) != EOF) { in write_f()
656 while ((c = getopt(argc, argv, "CqP:")) != EOF) { in writev_f()
967 while ((c = getopt(argc, argv, "snCr")) != EOF) { in open_f()
/external/e2fsprogs/misc/
Duuidgen.c19 extern int getopt(int argc, char * const argv[], const char *optstring);
50 while ((c = getopt (argc, argv, "tr")) != EOF) in main()
Dblkid.c18 extern int getopt(int argc, char * const argv[], const char *optstring);
140 while ((c = getopt (argc, argv, "c:f:ghlo:s:t:w:v")) != EOF) in main()
/external/clearsilver/python/examples/base/
Dodb_sqlite.py8 import os, sys, string, time, getopt
150 optlist, args = getopt.getopt(argv[1:], "", ["help", "test", "debug"])
Dwordwrap.py6 import os, sys, string, time, getopt
/external/bluetooth/bluez/test/
Dapitest8 import getopt
102 opts, args = getopt.getopt(argv, "hli:")
103 except getopt.GetoptError:
/external/libpcap/lbl/
Dos-ultrix4.h29 int getopt(int, char * const *, const char *);
/external/tcpdump/lbl/
Dos-ultrix4.h29 int getopt(int, char * const *, const char *);
/external/clearsilver/scripts/
Dcs_lint.py4 import sys, string, os, getopt, signal, time
272 alist, args = getopt.getopt(argv[1:], "", ["help"])
DChangeLog.py3 import sys, os, string, re, getopt, pwd, socket, time
228 list, args = getopt.getopt(argv[1:], "", ["help"])
Ddocument.py21 import sys, os, getopt, string, re, time
264 alist, args = getopt.getopt(argv[1:], "q", ["help", "outdir=", "owner=", "hdf"])
/external/webkit/V8Binding/v8/tools/
Dtickprocessor.py30 import getopt, os, string
493 opts, args = getopt.getopt(sys.argv[1:], "jgcoe", self.options)
494 except getopt.GetoptError:
/external/fsck_msdos/
Dmain.c77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) { in main()

123456