/external/srtp/include/ |
getopt_s.h | 54 getopt_s(int argc, char * const argv[], const 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/srtp/test/ |
getopt_s.c | 77 const char *optstring) { 93 switch(getopt_check_character(string[1], optstring)) {
|
/external/fio/lib/ |
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; 122 if (opt != ':' && (osptr = strchr(optstring, opt))) { 147 return (optstring[0] == ':')
|
/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, ''
|
/ndk/sources/host-tools/make-3.81/ |
getopt.c | 386 _getopt_initialize (int argc, char *const *argv, const char *optstring) 400 if (optstring[0] == '-') 403 ++optstring; 405 else if (optstring[0] == '+') 408 ++optstring; 445 return optstring; 450 given in OPTSTRING. 467 OPTSTRING is a string containing the legitimate option characters. 468 If an option character is seen that is not listed in OPTSTRING, 472 If a char in OPTSTRING is followed by a colon, that means it wants an arg [all...] |
/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/bison/lib/ |
getopt.c | 229 char **argv _GL_UNUSED, const char *optstring, 244 if (optstring[0] == '-') 247 ++optstring; 249 else if (optstring[0] == '+') 252 ++optstring; 289 return optstring; 294 given in OPTSTRING. 311 OPTSTRING is a string containing the legitimate option characters. 312 If an option character is seen that is not listed in OPTSTRING, 316 If a char in OPTSTRING is followed by a colon, that means it wants an arg [all...] |
/external/e2fsprogs/misc/ |
uuidgen.c | 19 extern int getopt(int argc, char * const argv[], const char *optstring);
|
blkid.c | 28 extern int getopt(int argc, char * const argv[], const char *optstring);
|
uuidd.c | 31 extern int getopt(int argc, char * const argv[], const char *optstring);
|
tune2fs.c | 876 char optstring[100] = "c:e:fg:i:jlm:o:r:s:u:C:E:I:J:L:M:O:T:U:"; local 879 strcat(optstring, "Q:"); 884 while ((c = getopt(argc, argv, optstring)) != EOF) [all...] |
/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/fio/t/ |
genzipf.c | 96 const char *optstring = "t:g:i:o:b:p:ch"; local 99 while ((c = getopt(argc, argv, optstring)) != -1) {
|
/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 | 359 int getopt(int argc, char *const argv[], const char *optstring);
|
/external/netperf/src/ |
netlib.h | 464 int getopt(int argc, char **argv, char *optstring);
|