Lines Matching defs:idx
22 static int __getopt_long_core(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx, int longonly);
24 static int __getopt_long(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx, int longonly)
43 ret = __getopt_long_core(argc, argv, optstring, longopts, idx, longonly);
53 static int __getopt_long_core(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx, int longonly)
118 if (idx) *idx = i;
140 int getopt_long(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx)
142 return __getopt_long(argc, argv, optstring, longopts, idx, 0);
145 int getopt_long_only(int argc, char *const *argv, const char *optstring, const struct option *longopts, int *idx)
147 return __getopt_long(argc, argv, optstring, longopts, idx, 1);