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()
156 int getopt_1long(const int argc, in getopt_1long() argument
204 if ((optind + 1) >= argc) { in getopt_1long()
212 if ((argc - optind) > 0) { in getopt_1long()
243 int getopt_long(int argc, in getopt_long() argument
253 if ((argc > optind) && (argv != 0)) { in getopt_long()
259 result = getopt_1long(argc, in getopt_long()
265 result = getopt_1char(argc, in getopt_long()
281 int getopt_long_only(int argc, in getopt_long_only() argument
291 if ((argc > optind) && (argv != 0)) { in getopt_long_only()
297 result = getopt_1long(argc, in getopt_long_only()
303 result = getopt_1long(argc, in getopt_long_only()
309 result = getopt_1char(argc, in getopt_long_only()