Searched refs:opt_index (Results 1 – 5 of 5) 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/fio/ |
D | goptions.c | 17 unsigned int opt_index; member 164 gopt->opt_index = idx; in gopt_mark_index() 207 struct fio_option *o = &fio_options[s->gopt.opt_index]; in gopt_str_changed() 268 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_changed() 313 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_str_set_val() 358 struct fio_option *o = &fio_options[c->gopt.opt_index]; in gopt_combo_int_set_val() 460 struct fio_option *o = &fio_options[i->gopt.opt_index]; in gopt_int_changed() 579 struct fio_option *o = &fio_options[b->gopt.opt_index]; in gopt_bool_toggled() 1007 struct fio_option *o, unsigned int opt_index, in gopt_add_option() argument 1019 go = gopt_new_str_val(gjv, o, ullp, opt_index); in gopt_add_option() [all …]
|
D | options.c | 4095 int opt_index = 0; in add_option() local 4099 opt_index++; in add_option() 4103 if (opt_index + 1 == FIO_MAX_OPTS) { in add_option() 4108 memcpy(&fio_options[opt_index], o, sizeof(*o)); in add_option() 4109 fio_options[opt_index + 1].name = NULL; in add_option()
|
/external/selinux/secilc/ |
D | secilc.c | 94 int opt_index = 0; in main() local 115 opt_char = getopt_long(argc, argv, "o:f:U:hvt:M:PDNc:", long_opts, &opt_index); in main()
|
/external/v8/src/debug/ |
D | debug.js | 971 ExecutionState.prototype.frame = function(opt_index) { argument 973 if (opt_index == null) opt_index = this.selected_frame; 974 if (opt_index < 0 || opt_index >= this.frameCount()) { 977 return new FrameMirror(this.break_id, opt_index);
|