Lines Matching refs:optind
58 …nt argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int… in php_getopt() argument
65 if (*optind >= argc) { in php_getopt()
69 if ((argv[*optind][0] != '-')) { in php_getopt()
72 if (!argv[*optind][1]) in php_getopt()
82 if ((argv[*optind][0] == '-') && (argv[*optind][1] == '-')) { in php_getopt()
84 int arg_end = strlen(argv[*optind])-1; in php_getopt()
87 if (argv[*optind][2] == '\0') { in php_getopt()
88 (*optind)++; in php_getopt()
95 if ((pos = php_memnstr(&argv[*optind][arg_start], "=", 1, argv[*optind]+arg_end)) != NULL) { in php_getopt()
96 arg_end = pos-&argv[*optind][arg_start]; in php_getopt()
105 (*optind)++; in php_getopt()
106 return(php_opt_error(argc, argv, *optind-1, optchr, OPTERRARG, show_err)); in php_getopt()
107 …} else if (opts[php_optidx].opt_name && !strncmp(&argv[*optind][2], opts[php_optidx].opt_name, arg… in php_getopt()
121 if (argv[*optind][optchr] == ':') { in php_getopt()
123 (*optind)++; in php_getopt()
124 return (php_opt_error(argc, argv, *optind-1, optchr, OPTERRCOLON, show_err)); in php_getopt()
132 int errind = *optind; in php_getopt()
135 if (!argv[*optind][optchr+1]) { in php_getopt()
137 (*optind)++; in php_getopt()
143 } else if (argv[*optind][optchr] == opts[php_optidx].opt_char) { in php_getopt()
152 if (!argv[*optind][arg_start]) { in php_getopt()
153 (*optind)++; in php_getopt()
154 if (*optind == argc) { in php_getopt()
157 return(php_opt_error(argc, argv, *optind-1, optchr, OPTERRARG, show_err)); in php_getopt()
161 *optarg = argv[(*optind)++]; in php_getopt()
163 } else if (argv[*optind][arg_start] == '=') { in php_getopt()
165 *optarg = &argv[*optind][arg_start]; in php_getopt()
166 (*optind)++; in php_getopt()
168 *optarg = &argv[*optind][arg_start]; in php_getopt()
169 (*optind)++; in php_getopt()
174 if (arg_start >= 2 && !((argv[*optind][0] == '-') && (argv[*optind][1] == '-'))) { in php_getopt()
175 if (!argv[*optind][optchr+1]) in php_getopt()
178 (*optind)++; in php_getopt()
183 (*optind)++; in php_getopt()