Home | History | Annotate | Download | only in gcc

Lines Matching refs:handlers

178 		    const struct cl_option_handlers *handlers,
187 decoded->value, kind, loc, handlers);
204 HANDLERS describes what functions to call for the options. */
212 const struct cl_option_handlers *handlers,
238 decoded_options + i, loc, lang_mask, handlers,
278 /* Set *HANDLERS to the default set of option handlers for use in the
281 set_default_handlers (struct cl_option_handlers *handlers,
284 handlers->unknown_option_callback = unknown_option_callback;
285 handlers->wrong_lang_callback = complain_wrong_lang;
286 handlers->target_option_override_hook = target_option_override_hook;
287 handlers->num_handlers = 3;
288 handlers->handlers[0].handler = lang_handle_option;
289 handlers->handlers[0].mask = initial_lang_mask;
290 handlers->handlers[1].handler = common_handle_option;
291 handlers->handlers[1].mask = CL_COMMON;
292 handlers->handlers[2].handler = target_handle_option;
293 handlers->handlers[2].mask = CL_TARGET;
307 struct cl_option_handlers handlers;
313 set_default_handlers (&handlers, target_option_override_hook);
317 loc, lang_mask, &handlers, dc);
322 &handlers, dc);
345 handlers have been called for all options. */