HomeSort by relevance Sort by last modified time
    Searched refs:optstring (Results 1 - 22 of 22) sorted by 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);
  /external/python/cpython3/Include/internal/
pygetopt.h 16 extern int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
  /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, ''
  /external/python/cpython3/Lib/
getopt.py 192 def do_shorts(opts, optstring, shortopts, args):
193 while optstring != '':
194 opt, optstring = optstring[0], optstring[1:]
196 if optstring == '':
200 optstring, args = args[0], args[1:]
201 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...]
  /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) {
  /external/e2fsprogs/misc/
uuidgen.c 20 extern int getopt(int argc, char * const argv[], const char *optstring);
blkid.c 29 extern int getopt(int argc, char * const argv[], const char *optstring);
uuidd.c 32 extern int getopt(int argc, char * const argv[], const char *optstring);
tune2fs.c 1797 char optstring[100] = "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:z:Q:"; local
    [all...]
  /external/minijail/
parse_seccomp_policy.cc 50 const char* optstring = "d:h"; local
60 while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) != -1) {
minijail0_cli.c 590 const char *optstring = local
606 while ((opt = getopt_long(argc, argv, optstring, long_options, NULL)) !=
  /external/python/cpython3/Python/
getopt.c 54 int _PyOS_GetOpt(int argc, wchar_t **argv, wchar_t *optstring,
131 if ((ptr = wcschr(optstring, option)) == NULL) {
  /external/autotest/client/tests/monotonic_time/src/
time_test.c 35 const char optstring[] = "c:d:ht:v"; variable
333 while ((c = getopt_long(argc, argv, optstring, options, NULL)) != EOF) {
  /external/wpa_supplicant_8/src/utils/
common.c 371 int getopt(int argc, char *const argv[], const char *optstring)
395 cp = os_strchr(optstring, optopt);
common.h 372 int getopt(int argc, char *const argv[], const char *optstring);

Completed in 6876 milliseconds