Lines Matching defs:context
49 def _warn_meaningless_option(context, option):
50 if hasattr(context.options, "list_debuggers"):
53 context.logger.warning(
56 flag=f"--debugger={context.options.debugger}",
72 def add_debugger_tool_arguments(parser, context, defaults):
73 debuggers = Debuggers(context)
153 def handle_debugger_tool_base_options(context, defaults): # noqa
154 options = context.options
160 _warn_meaningless_option(context, "--lldb-executable")
169 def handle_debugger_tool_options(context, defaults): # noqa
170 options = context.options
172 handle_debugger_tool_base_options(context, defaults)
178 _warn_meaningless_option(context, "--arch")
184 _warn_meaningless_option(context, "--show-debugger")
243 def __init__(self, context):
244 self.context = context
248 return Debuggers.potential_debuggers()[key](self.context)
313 if self.context.options.verbose:
334 self.context.o.auto("\n{}\n\n".format("\n".join(msgs)))