Lines Matching refs:OPTION
10 (at your option) any later version.
47 /* Break an option number into its op/int-nr */
50 int option)
53 watchpoint_type type = ((option - OPTION_WATCH_OP)
61 int option)
64 int interrupt_nr = ((option - OPTION_WATCH_OP)
339 sim_io_eprintf (sd, "Unknown watch option %d\n", opt);
363 static const OPTION watchpoint_options[] =
407 OPTION *int_options = NZALLOC (OPTION, 1 + (watch->nr_interrupts + 1) * nr_watchpoint_types);
416 OPTION *option = &int_options[nr];
421 option->opt.name = name;
422 option->opt.has_arg = required_argument;
423 option->opt.val = type_to_option (sd, type, interrupt_nr);
424 option->doc = "";
425 option->doc_name = "";
426 option->handler = watchpoint_option_handler;