HomeSort by relevance Sort by last modified time
    Searched refs:optstring (Results 1 - 25 of 37) sorted by null

1 2

  /external/syslinux/gpxe/src/include/
getopt.h 57 extern int getopt_long ( int argc, char * const argv[], const char *optstring,
65 * @v optstring Option specification string
71 const char *optstring ) {
75 return getopt_long ( argc, argv, optstring, no_options, NULL );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pygetopt.h 12 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /external/python/cpython2/Include/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /prebuilts/gdb/darwin-x86/include/python2.7/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /prebuilts/gdb/linux-x86/include/python2.7/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pygetopt.h 13 PyAPI_FUNC(int) _PyOS_GetOpt(int argc, char **argv, char *optstring);
  /external/syslinux/com32/lib/
getopt.c 19 int getopt(int argc, char *const *argv, const char *optstring)
29 "optstring" or "argv" argument have changed since last time
32 if (optstring != pvt.last_optstring || argv != pvt.last_argv ||
35 pvt.last_optstring = optstring;
61 if (opt != ':' && (osptr = strchr(optstring, opt))) {
77 return (optstring[0] == ':')
getopt_long.c 8 * - First optstring character "-" not supported.
38 int getopt_long(int argc, char *const *argv, const char *optstring,
49 "optstring" or "argv" argument have changed since last time
52 if (optstring != pvt.last_optstring || argv != pvt.last_argv ||
55 pvt.last_optstring = optstring;
116 if (opt != ':' && (osptr = strchr(optstring, opt))) {
132 return (optstring[0] == ':')
  /external/syslinux/libinstaller/getopt/
getopt_long.c 8 * - First optstring character "-" not supported.
38 int getopt_long(int argc, char *const *argv, const char *optstring,
49 "optstring" or "argv" argument have changed since last time
52 if (optstring != pvt.last_optstring || argv != pvt.last_argv ||
55 pvt.last_optstring = optstring;
116 if (opt != ':' && (osptr = strchr(optstring, opt))) {
132 return (optstring[0] == ':')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /external/python/cpython2/Lib/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /prebuilts/gdb/darwin-x86/lib/python2.7/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /prebuilts/gdb/linux-x86/lib/python2.7/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getopt.py 187 def do_shorts(opts, optstring, shortopts, args):
188 while optstring != '':
189 opt, optstring = optstring[0], optstring[1:]
191 if optstring == '':
195 optstring, args = args[0], args[1:]
196 optarg, optstring = optstring, ''
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getopt.c 41 int _PyOS_GetOpt(int argc, char **argv, char *optstring)
95 if ((ptr = strchr(optstring, option)) == NULL) {
  /external/libusb/examples/getopt/
getopt.c 392 _getopt_initialize (argc, argv, optstring)
395 const char *optstring;
409 if (optstring[0] == '-')
412 ++optstring;
414 else if (optstring[0] == '+')
417 ++optstring;
454 return optstring;
459 given in OPTSTRING.
476 OPTSTRING is a string containing the legitimate option characters.
477 If an option character is seen that is not listed in OPTSTRING,
    [all...]
  /external/fio/oslib/
getopt_long.c 8 * - First optstring character "-" not supported.
42 int getopt_long_only(int argc, char *const *argv, const char *optstring,
55 "optstring" or "argv" argument have changed since last time
58 if (optstring != pvt.last_optstring || argv != pvt.last_argv ||
61 pvt.last_optstring = optstring;
148 if (opt != ':' && (osptr = strchr(optstring, opt))) {
173 return (optstring[0] == ':')
  /toolchain/binutils/binutils-2.25/libiberty/
getopt.c 406 const char *optstring)
420 if (optstring[0] == '-')
423 ++optstring;
425 else if (optstring[0] == '+')
428 ++optstring;
465 return optstring;
470 given in OPTSTRING.
487 OPTSTRING is a string containing the legitimate option characters.
488 If an option character is seen that is not listed in OPTSTRING,
492 If a char in OPTSTRING is followed by a colon, that means it wants an arg
    [all...]
  /external/syslinux/gpxe/src/core/
getopt.c 215 * @v optstring Option specification string
224 int getopt_long ( int argc, char * const argv[], const char *optstring,
259 while ( ( shortopt = *(optstring++) ) ) {
261 while ( *optstring == ':' ) {
263 optstring++;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getopt.c 50 int _PyOS_GetOpt(int argc, char **argv, char *optstring)
105 if ((ptr = strchr(optstring, option)) == NULL) {
  /external/python/cpython2/Python/
getopt.c 50 int _PyOS_GetOpt(int argc, char **argv, char *optstring)
105 if ((ptr = strchr(optstring, option)) == NULL) {

Completed in 273 milliseconds

1 2