Searched refs:opt_index (Results 1 – 4 of 4) sorted by relevance
/external/bison/lib/ |
D | getopt1.c | 45 const struct option *long_options, int *opt_index) in getopt_long() argument 48 opt_index, 0, 0); in getopt_long() 53 const struct option *long_options, int *opt_index, in _getopt_long_r() argument 56 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_r() 68 const struct option *long_options, int *opt_index) in getopt_long_only() argument 71 opt_index, 1, 0); in getopt_long_only() 76 const struct option *long_options, int *opt_index, in _getopt_long_only_r() argument 79 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_only_r()
|
/external/grub/lib/ |
D | getopt1.c | 69 getopt_long (argc, argv, options, long_options, opt_index) in getopt_long() argument 74 int *opt_index; 76 return _getopt_internal (argc, argv, options, long_options, opt_index, 0); 85 getopt_long_only (argc, argv, options, long_options, opt_index) in getopt_long_only() argument 90 int *opt_index; 92 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
|
/external/v8/src/ |
D | debug-debugger.js | 778 ExecutionState.prototype.frame = function(opt_index) { argument 780 if (opt_index == null) opt_index = this.selected_frame; 781 return new FrameMirror(this.break_id, opt_index);
|
/external/qemu/ |
D | qemu-io.c | 1068 int opt_index = 0; in main() local 1073 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) { in main()
|