Lines Matching refs:argc
70 int getopt_1char(int argc, in getopt_1char() argument
82 if (optind < argc) { in getopt_1char()
115 int getopt(int argc, in getopt() argument
125 if ((argc > optind) && (argv != 0)) { in getopt()
129 result = getopt_1char(argc, argv, opstring, arg[1]); in getopt()
155 int getopt_1long(const int argc, in getopt_1long() argument
172 if ((optind + 1) >= argc) { in getopt_1long()
180 if ((argc - optind) > 0) { in getopt_1long()
212 int getopt_long(int argc, in getopt_long() argument
222 if ((argc > optind) && (argv != 0)) { in getopt_long()
228 result = getopt_1long(argc, in getopt_long()
234 result = getopt_1char(argc, in getopt_long()
250 int getopt_long_only(int argc, in getopt_long_only() argument
260 if ((argc > optind) && (argv != 0)) { in getopt_long_only()
266 result = getopt_1long(argc, in getopt_long_only()
272 result = getopt_1long(argc, in getopt_long_only()
278 result = getopt_1char(argc, in getopt_long_only()