/external/bison/m4/ |
D | getopt.m4 | 1 # 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/ |
D | getopt_.h | 39 # undef getopt 49 # define getopt __GETOPT_ID (getopt) macro 203 extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
|
D | gnulib.mk | 16 getopt.h: getopt_.h 19 MOSTLYCLEANFILES += getopt.h getopt.h-t
|
D | Makefile.in | 42 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
|
D | Makefile | 42 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/ |
D | bno_plot.py | 41 import getopt, glob, os, sys, tempfile 62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts) 63 except getopt.error, msg:
|
D | btt_plot.py | 64 import getopt, glob, os, sys 208 (opts, args) = getopt.getopt(args[1:], s_opts, l_opts) 209 except getopt.error, msg:
|
/external/grub/lib/ |
D | getopt.h | 106 extern int getopt (int argc, char *const *argv, const char *shortopts); 108 extern int getopt (); 122 extern int getopt ();
|
D | Makefile.am | 6 libcommon_a_SOURCES = getopt.c getopt1.c getopt.h device.c device.h
|
D | Makefile.in | 56 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/ |
D | getopt.h | 108 extern int getopt (int argc, char *const *argv, const char *shortopts); 110 extern int getopt (); 124 extern int getopt ();
|
/external/qemu/ |
D | offset_layout.py | 5 import getopt 33 options, args = getopt.getopt(sys.argv[1:], "", ["dx=", "dy=", "px=", "py=", "kx=", "ky="]) 49 except getopt.error, msg:
|
D | qemu-io.c | 218 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/ |
D | uuidgen.c | 19 extern int getopt(int argc, char * const argv[], const char *optstring); 50 while ((c = getopt (argc, argv, "tr")) != EOF) in main()
|
D | blkid.c | 18 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/ |
D | odb_sqlite.py | 8 import os, sys, string, time, getopt 150 optlist, args = getopt.getopt(argv[1:], "", ["help", "test", "debug"])
|
D | wordwrap.py | 6 import os, sys, string, time, getopt
|
/external/bluetooth/bluez/test/ |
D | apitest | 8 import getopt 102 opts, args = getopt.getopt(argv, "hli:") 103 except getopt.GetoptError:
|
/external/libpcap/lbl/ |
D | os-ultrix4.h | 29 int getopt(int, char * const *, const char *);
|
/external/tcpdump/lbl/ |
D | os-ultrix4.h | 29 int getopt(int, char * const *, const char *);
|
/external/clearsilver/scripts/ |
D | cs_lint.py | 4 import sys, string, os, getopt, signal, time 272 alist, args = getopt.getopt(argv[1:], "", ["help"])
|
D | ChangeLog.py | 3 import sys, os, string, re, getopt, pwd, socket, time 228 list, args = getopt.getopt(argv[1:], "", ["help"])
|
D | document.py | 21 import sys, os, getopt, string, re, time 264 alist, args = getopt.getopt(argv[1:], "q", ["help", "outdir=", "owner=", "hdf"])
|
/external/webkit/V8Binding/v8/tools/ |
D | tickprocessor.py | 30 import getopt, os, string 493 opts, args = getopt.getopt(sys.argv[1:], "jgcoe", self.options) 494 except getopt.GetoptError:
|
/external/fsck_msdos/ |
D | main.c | 77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) { in main()
|