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

  /external/ltp/testcases/kernel/io/disktest/
Getopt.c 26 * $Id: Getopt.c,v 1.5 2008/02/14 08:22:22 subrata_modak Exp $
27 * $Log: Getopt.c,v $
55 * have getopt
60 * Fixed windows getopt to return correctly
77 #include "getopt.h"
81 * FUNCTION: getopt()
85 * to conform with unix like getopt.
93 int getopt(int argc, char **argv, char *pszValidOpts) function
  /device/generic/opengl-transport/host/commands/emugen/
getopt.c 1 #include "getopt.h"
13 int getopt(int argc, char* const argv[], const char* ostr) { function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
getopt.py 4 sys.argv. It supports the same conventions as the Unix getopt()
10 getopt() -- Parse command line options
11 gnu_getopt() -- Like getopt(), but allow option and non-option arguments
34 __all__ = ["GetoptError","error","getopt","gnu_getopt"]
51 def getopt(args, shortopts, longopts = []): function
52 """getopt(args, options[, long_options]) -> opts, args
59 colon (i.e., the same format that Unix getopt() uses). If
95 """getopt(args, options[, long_options]) -> opts, args
97 This function works like getopt(), except that GNU style scanning
99 arguments may be intermixed. The getopt() function stops
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
getopt.py 4 sys.argv. It supports the same conventions as the Unix getopt()
10 getopt() -- Parse command line options
11 gnu_getopt() -- Like getopt(), but allow option and non-option arguments
34 __all__ = ["GetoptError","error","getopt","gnu_getopt"]
51 def getopt(args, shortopts, longopts = []): function
52 """getopt(args, options[, long_options]) -> opts, args
59 colon (i.e., the same format that Unix getopt() uses). If
95 """getopt(args, options[, long_options]) -> opts, args
97 This function works like getopt(), except that GNU style scanning
99 arguments may be intermixed. The getopt() function stops
    [all...]
  /external/libpcap/missing/
getopt.c 35 static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95";
42 #include "getopt.h"
47 optreset; /* reset getopt */
55 * getopt --
59 getopt(int nargc, char * const *nargv, const char *ostr) function
  /external/python/cpython2/Lib/
getopt.py 4 sys.argv. It supports the same conventions as the Unix getopt()
10 getopt() -- Parse command line options
11 gnu_getopt() -- Like getopt(), but allow option and non-option arguments
34 __all__ = ["GetoptError","error","getopt","gnu_getopt"]
51 def getopt(args, shortopts, longopts = []): function
52 """getopt(args, options[, long_options]) -> opts, args
59 colon (i.e., the same format that Unix getopt() uses). If
95 """getopt(args, options[, long_options]) -> opts, args
97 This function works like getopt(), except that GNU style scanning
99 arguments may be intermixed. The getopt() function stop
    [all...]
  /external/python/cpython3/Lib/
getopt.py 4 sys.argv. It supports the same conventions as the Unix getopt()
10 getopt() -- Parse command line options
11 gnu_getopt() -- Like getopt(), but allow option and non-option arguments
34 __all__ = ["GetoptError","error","getopt","gnu_getopt"]
56 def getopt(args, shortopts, longopts = []): function
57 """getopt(args, options[, long_options]) -> opts, args
64 colon (i.e., the same format that Unix getopt() uses). If
100 """getopt(args, options[, long_options]) -> opts, args
102 This function works like getopt(), except that GNU style scanning
104 arguments may be intermixed. The getopt() function stop
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.c 12 * This variable is set by getopt to the index of the next element of the
13 * argv array to be processed. Once getopt has found all of the option
20 * If the value of this variable is nonzero, then getopt prints an error
23 * If you set this variable to zero, getopt does not print any messages,
31 * When getopt encounters an unknown option character or an option with a
38 * This variable is set by getopt to point at the value of the option
107 * If getopt finds an option character in argv that was not included in
115 int getopt(int argc, function
200 * If getopt finds an option character in argv that was not included
210 * (single letter) as for getopt, or longer names (preceded by --)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
fancy_getopt.py 3 Wrapper around the standard getopt module that provides the following
16 import getopt
34 """Wrapper around the standard 'getopt()' module that provides some
81 # And 'option_order' is filled up in 'getopt()'; it records the
148 option table. Called by 'getopt()' before it can do anything
234 def getopt (self, args=None, object=None): member in class:FancyGetopt
241 'getopt()' just returns 'args'; in both cases, the returned
257 opts, args = getopt.getopt(args, short_opts, self.long_opts)
258 except getopt.error, msg:
    [all...]
  /external/python/cpython2/Lib/distutils/
fancy_getopt.py 3 Wrapper around the standard getopt module that provides the following
16 import getopt
34 """Wrapper around the standard 'getopt()' module that provides some
81 # And 'option_order' is filled up in 'getopt()'; it records the
148 option table. Called by 'getopt()' before it can do anything
234 def getopt (self, args=None, object=None): member in class:FancyGetopt
241 'getopt()' just returns 'args'; in both cases, the returned
257 opts, args = getopt.getopt(args, short_opts, self.long_opts)
258 except getopt.error, msg
    [all...]
  /external/python/cpython3/Lib/distutils/
fancy_getopt.py 3 Wrapper around the standard getopt module that provides the following
12 import getopt
30 """Wrapper around the standard 'getopt()' module that provides some
76 # And 'option_order' is filled up in 'getopt()'; it records the
135 option table. Called by 'getopt()' before it can do anything
210 def getopt(self, args=None, object=None): member in class:FancyGetopt
217 'getopt()' just returns 'args'; in both cases, the returned
233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
234 except getopt.error as msg
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 62 #include <getopt.h>
68 #if 0 /* we prefer to keep our getopt(3) */
69 #define REPLACE_GETOPT /* use this getopt as the system getopt(3) */
76 int optreset; /* reset getopt */
567 * getopt --
570 * [eventually this will replace the BSD getopt]
573 getopt(int nargc, char * const *nargv, const char *options) function
578 * the BSD getopt(3) (unlike GNU) has never done this.
580 * Furthermore, since many privileged programs call getopt()
    [all...]
  /external/libusb/examples/getopt/
getopt.c 0 /* Getopt for GNU.
2 NOTE: getopt is now part of the C library, so if you don't know what
25 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
68 contain conflicting prototypes for getopt. */
92 /* This version of `getopt' appears to the caller like standard Unix `getopt'
96 As `getopt' works, it permutes the elements of ARGV so that,
106 #include "getopt.h"
108 /* For communication from `getopt' to the caller.
109 When `getopt' finds an option that takes an argument
977 getopt (argc, argv, optstring) function
    [all...]
  /external/mesa3d/src/getopt/
getopt_long.c 53 #include <getopt.h>
61 int optreset; /* reset getopt */
467 * getopt --
470 * [eventually this will replace the BSD getopt]
473 getopt(int nargc, char * const *nargv, const char *options) function
478 * the BSD getopt(3) (unlike GNU) has never done this.
480 * Furthermore, since many privileged programs call getopt()
  /external/openssh/openbsd-compat/
getopt_long.c 59 * getopt opterr optind optopt optreset optarg are all in defines.h which is
66 #include <getopt.h>
78 int optreset; /* reset getopt */
484 * getopt --
487 * [eventually this will replace the BSD getopt]
490 getopt(int nargc, char * const *nargv, const char *options) function
495 * the BSD getopt(3) (unlike GNU) has never done this.
497 * Furthermore, since many privileged programs call getopt()
  /external/tcpdump/missing/
getopt_long.c 567 * getopt --
570 * [eventually this will replace the BSD getopt]
573 getopt(int nargc, char * const *nargv, const char *options) function
578 * the BSD getopt(3) (unlike GNU) has never done this.
580 * Furthermore, since many privileged programs call getopt()
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
compat.c 103 getopt(int argc, char **argv, char *args) function
  /external/wpa_supplicant_8/src/utils/
common.c 371 int getopt(int argc, char *const argv[], const char *optstring) function
  /external/openssh/
defines.h 586 # undef getopt macro
592 # define getopt(ac, av, o) BSDgetopt(ac, av, o) macro
  /external/epid-sdk/ext/argtable3/
argtable3.c 173 /* $Id: getopt.h,v 1.1 2009/10/16 19:50:28 rodney Exp rodney $ */
174 /* $OpenBSD: getopt.h,v 1.1 2002/12/03 20:24:29 millert Exp $ */
175 /* $NetBSD: getopt.h,v 1.4 2000/07/07 10:43:54 ad Exp $ */
251 int getopt(int, char * const *, const char *);
254 extern char *optarg; /* getopt(3) external variables */
327 #define REPLACE_GETOPT /* use this getopt as the system getopt(3) */
333 int optreset; /* reset getopt */
804 * getopt --
807 * [eventually this will replace the BSD getopt]
810 getopt(int nargc, char * const *nargv, const char *options) function
    [all...]

Completed in 1418 milliseconds