Searched refs:opt_index (Results 1 – 7 of 7) sorted by relevance
/external/bison/lib/ |
D | getopt1.c | 41 const struct option *long_options, int *opt_index) in getopt_long() argument 44 opt_index, 0, 0); in getopt_long() 49 const struct option *long_options, int *opt_index, in _getopt_long_r() argument 52 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_r() 64 const struct option *long_options, int *opt_index) in getopt_long_only() argument 67 opt_index, 1, 0); in getopt_long_only() 72 const struct option *long_options, int *opt_index, in _getopt_long_only_r() argument 75 return _getopt_internal_r (argc, argv, options, long_options, opt_index, in _getopt_long_only_r()
|
/external/libusb/examples/getopt/ |
D | getopt1.c | 67 getopt_long (argc, argv, options, long_options, opt_index) in getopt_long() argument 72 int *opt_index; 74 return _getopt_internal (argc, argv, options, long_options, opt_index, 0); 83 getopt_long_only (argc, argv, options, long_options, opt_index) in getopt_long_only() argument 88 int *opt_index; 90 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
|
/external/fio/ |
D | goptions.c | 18 unsigned int opt_index; member 165 gopt->opt_index = idx; in gopt_mark_index() 208 struct fio_option *o = &fio_options[s->gopt.opt_index]; in gopt_str_changed() 269 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_changed() 314 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_str_set_val() 359 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_int_set_val() 461 struct fio_option *o = &fio_options[i->gopt.opt_index]; in gopt_int_changed() 580 struct fio_option *o = &fio_options[b->gopt.opt_index]; in gopt_bool_toggled() 1008 struct fio_option *o, unsigned int opt_index, in gopt_add_option() argument 1020 go = gopt_new_str_val(gjv, o, ullp, opt_index); in gopt_add_option() [all …]
|
D | options.c | 4873 int opt_index = 0; in add_option() local 4877 opt_index++; in add_option() 4881 if (opt_index + 1 == FIO_MAX_OPTS) { in add_option() 4886 memcpy(&fio_options[opt_index], o, sizeof(*o)); in add_option() 4887 fio_options[opt_index + 1].name = NULL; in add_option()
|
/external/selinux/secilc/ |
D | secil2conf.c | 72 int opt_index = 0; in main() local 85 opt_char = getopt_long(argc, argv, "o:hvM:P", long_opts, &opt_index); in main()
|
D | secilc.c | 99 int opt_index = 0; in main() local 122 opt_char = getopt_long(argc, argv, "o:f:U:hvt:M:PDNc:GX:", long_opts, &opt_index); in main()
|
/external/v8/src/debug/ |
D | debug.js | 837 ExecutionState.prototype.frame = function(opt_index) { argument 839 if (opt_index == null) opt_index = this.selected_frame; 840 if (opt_index < 0 || opt_index >= this.frameCount()) { 843 return new FrameMirror(this.break_id, opt_index);
|