HomeSort by relevance Sort by last modified time
    Searched refs:m_interpreter (Results 1 - 25 of 43) sorted by null

1 2

  /external/lldb/source/Interpreter/
ScriptInterpreterNone.cpp 33 m_interpreter.GetDebugger().GetErrorStream().PutCString ("error: there is no embedded script interpreter in this mode.\n");
40 m_interpreter.GetDebugger().GetErrorStream().PutCString ("error: there is no embedded script interpreter in this mode.\n");
CommandObjectScript.cpp 60 if (m_interpreter.GetDebugger().GetScriptLanguage() == lldb::eScriptLanguageNone)
67 ScriptInterpreter *script_interpreter = m_interpreter.GetScriptInterpreter ();
ScriptInterpreter.cpp 29 m_interpreter (interpreter),
41 return m_interpreter;
CommandObjectRegexCommand.cpp 85 if (m_interpreter.GetExpandRegexAliases())
89 return m_interpreter.HandleCommand(new_command.c_str(), eLazyBoolCalculate, result, NULL, true, true);
134 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
  /external/lldb/source/DataFormatters/
TypeSynthetic.cpp 72 m_interpreter(NULL)
82 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
84 if (m_interpreter != NULL)
85 m_wrapper_sp = m_interpreter->CreateSyntheticScriptedProvider(m_python_class.c_str(), backend.GetSP());
95 if (!m_wrapper_sp || !m_interpreter)
98 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx);
  /external/lldb/source/Commands/
CommandObjectApropos.cpp 74 m_interpreter.FindCommandsForApropos (search_word, commands_found, commands_help, true, false);
75 m_interpreter.FindCommandsForApropos (search_word, user_commands_found, user_commands_help, false, true);
96 m_interpreter.OutputFormattedHelpText (result.GetOutputStream(),
118 m_interpreter.OutputFormattedHelpText (result.GetOutputStream(),
129 const size_t num_properties = m_interpreter.GetDebugger().Apropos(search_word, properties);
135 properties[i]->DumpDescription (m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
CommandObjectHelp.cpp 80 m_interpreter.GetHelp (result, cmd_types); // General help
86 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex (0), &matches);
87 bool is_alias_command = m_interpreter.AliasExists (command.GetArgumentAtIndex (0));
159 m_interpreter.GetAliasHelp (alias_name.c_str(), cmd_obj->GetCommandName(), sstr);
180 CommandObject::GetArgumentHelp (output_strm, arg_type, m_interpreter);
211 return m_interpreter.HandleCompletionMatches (input,
221 CommandObject *cmd_obj = m_interpreter.GetCommandObject (input.GetArgumentAtIndex(0));
240 return m_interpreter.HandleCompletionMatches (input,
CommandObjectQuit.cpp 43 if (m_interpreter.GetPromptOnQuit() == false)
89 if (!m_interpreter.Confirm(message.GetData(), true))
95 m_interpreter.BroadcastEvent (CommandInterpreter::eBroadcastBitQuitCommandReceived);
CommandObjectCommands.cpp 147 m_interpreter.GetCommandHistory().Clear();
163 const CommandHistory& history(m_interpreter.GetCommandHistory());
287 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
388 bool stop_on_error = m_options.m_stop_on_error.OptionWasSet() ? (bool)m_options.m_stop_on_error : m_interpreter.GetStopCmdSourceOnError();
390 m_interpreter.HandleCommandsFromFile (cmd_file,
573 if (m_interpreter.CommandExists (alias_command.c_str()))
583 CommandObject *cmd_obj = m_interpreter.GetCommandObjectForCommand (raw_command_string);
613 CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false);
615 if (!m_interpreter.ProcessAliasOptionsArgs (cmd_obj_sp, raw_command_string.c_str(), option_arg_vector_sp))
623 if (m_interpreter.AliasExists (alias_command.c_str()
1628 CommandInterpreter& m_interpreter; member in class:CommandObjectCommandsScriptAdd::PythonAliasReader
    [all...]
CommandObjectPlugin.cpp 67 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
99 if (m_interpreter.GetDebugger().LoadPlugin(dylib_fspec, error))
CommandObjectSettings.cpp 176 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
200 lldb::OptionValueSP value_sp (m_interpreter.GetDebugger().GetPropertyValue(&m_exe_ctx, setting_var_name, false, error));
203 value_sp->AutoComplete (m_interpreter,
250 error = m_interpreter.GetDebugger().SetPropertyValue (NULL,
265 error = m_interpreter.GetDebugger().SetPropertyValue (&exe_ctx,
339 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
363 Error error(m_interpreter.GetDebugger().DumpPropertyValue (&m_exe_ctx, result.GetOutputStream(), property_path, OptionValue::eDumpGroupValue));
377 m_interpreter.GetDebugger().DumpAllPropertyValues (&m_exe_ctx, result.GetOutputStream(), OptionValue::eDumpGroupValue);
431 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
458 const Property *property = m_interpreter.GetDebugger().GetValueProperties()->GetPropertyAtPath (&m_exe_ctx, will_modify, property_path)
    [all...]
CommandObjectDisassemble.cpp 95 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
103 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
133 Target *target = m_interpreter.GetExecutionContext().GetTargetPtr();
153 if (!arch.SetTriple (option_arg, m_interpreter.GetPlatform (true).get()))
159 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
193 Target *target = m_interpreter.GetExecutionContext().GetTargetPtr();
281 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
350 if (Disassembler::Disassemble (m_interpreter.GetDebugger(),
505 if (Disassembler::Disassemble (m_interpreter.GetDebugger(),
552 if (Disassembler::Disassemble (m_interpreter.GetDebugger(),
    [all...]
CommandObjectPlatform.cpp 70 CommandCompletions::PlatformPluginNames (m_interpreter,
99 PlatformSP platform_sp (m_platform_options.CreatePlatformWithOptions (m_interpreter, ArchSpec(), select, error, platform_arch));
210 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
218 platform_sp = m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform();
260 PlatformSP platform_sp (m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform());
308 PlatformSP platform_sp (m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform());
393 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
401 platform_sp = m_interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform();
438 Debugger &debugger = m_interpreter.GetDebugger();
511 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get()
    [all...]
CommandObjectWatchpointCommand.cpp 192 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
207 m_interpreter.GetDebugger().PushInputReader (reader_sp);
488 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
545 m_interpreter.GetScriptInterpreter()->SetWatchpointCommandCallback (wp_options,
555 m_interpreter.GetScriptInterpreter()->SetWatchpointCommandCallback (wp_options,
560 m_interpreter.GetScriptInterpreter()->CollectDataForWatchpointCommandCallback (wp_options,
654 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
746 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
    [all...]
CommandObjectSyntax.cpp 66 cmd_obj = m_interpreter.GetCommandObject (command.GetArgumentAtIndex(0));
CommandObjectExpression.cpp 320 ExecutionContext exe_ctx (m_interpreter.GetExecutionContext());
325 target = Host::GetDummyTarget(m_interpreter.GetDebugger()).get();
373 if (format != eFormatVoid && m_interpreter.GetDebugger().GetNotifyVoid())
430 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
441 m_interpreter.GetDebugger().PushInputReader (reader_sp);
CommandObjectProcess.cpp 69 if (!m_interpreter.Confirm (message, true))
161 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
188 Debugger &debugger = m_interpreter.GetDebugger();
252 bool synchronous_execution = m_interpreter.GetSynchronous ();
488 PlatformSP platform_sp (m_interpreter.GetPlatform (true));
549 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
566 error = m_interpreter.GetDebugger().GetTargetList().CreateTarget (m_interpreter.GetDebugger(),
578 m_interpreter.GetDebugger().GetTargetList().SetSelectedTarget(target);
597 process = target->CreateProcess (m_interpreter.GetDebugger().GetListener(), plugin_name, NULL).get()
    [all...]
CommandObjectBreakpointCommand.cpp 214 InputReaderSP reader_sp (new InputReader(m_interpreter.GetDebugger()));
229 m_interpreter.GetDebugger().PushInputReader (reader_sp);
511 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
582 m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback (bp_options,
593 m_interpreter.GetScriptInterpreter()->SetBreakpointCommandCallback (bp_options,
598 m_interpreter.GetScriptInterpreter()->CollectDataForBreakpointCommandCallback (bp_options,
693 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
791 Target *target = m_interpreter.GetDebugger().GetSelectedTarget().get();
    [all...]
CommandObjectTarget.cpp 210 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
247 Debugger &debugger = m_interpreter.GetDebugger();
286 ProcessSP process_sp (target_sp->CreateProcess (m_interpreter.GetDebugger().GetListener(), NULL, &core_file));
381 if (DumpTargetList (m_interpreter.GetDebugger().GetTargetList(), show_stopped_process_status, strm) == 0)
431 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
512 TargetList &target_list = m_interpreter.GetDebugger().GetTargetList();
    [all...]
CommandObjectMultiword.cpp 192 uint32_t max_len = m_interpreter.FindLongestCommandWord (m_subcommand_dict);
205 m_interpreter.OutputFormattedHelpText (output_stream,
212 m_interpreter.OutputFormattedHelpText (output_stream,
CommandObjectFrame.cpp 364 CommandCompletions::InvokeCommonCompletionCallbacks (m_interpreter,
586 if (m_interpreter.TruncationWarningNecessary())
588 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
590 m_interpreter.TruncationWarningGiven();
  /external/lldb/source/Plugins/OperatingSystem/Python/
OperatingSystemPython.cpp 91 m_interpreter (NULL),
99 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
100 if (m_interpreter)
111 if (m_interpreter->LoadScriptingModule (python_module_path_cstr, allow_reload, init_session, error))
119 ScriptInterpreterObjectSP object_sp = m_interpreter->OSPlugin_CreatePluginObject(os_plugin_class_name.c_str(), process->CalculateProcess());
136 if (!m_interpreter || !m_python_object_sp)
143 PythonDictionary dictionary(m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp));
174 if (!m_interpreter || !m_python_object_sp)
191 auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure threads_list stays alive
192 PythonList threads_list(m_interpreter->OSPlugin_ThreadsInfo(m_python_object_sp))
    [all...]
OperatingSystemPython.h 103 lldb_private::ScriptInterpreter *m_interpreter; member in class:OperatingSystemPython
  /external/lldb/include/lldb/DataFormatters/
TypeSynthetic.h 530 ScriptInterpreter *m_interpreter; member in class:lldb_private::ScriptedSyntheticChildren::FrontEnd
542 if (!m_wrapper_sp || m_interpreter == NULL)
544 return m_interpreter->CalculateNumChildren(m_wrapper_sp);
553 if (!m_wrapper_sp || m_interpreter == NULL)
556 return m_interpreter->UpdateSynthProviderInstance(m_wrapper_sp);
562 if (!m_wrapper_sp || m_interpreter == NULL)
565 return m_interpreter->MightHaveChildrenSynthProviderInstance(m_wrapper_sp);
571 if (!m_wrapper_sp || m_interpreter == NULL)
573 return m_interpreter->GetIndexOfChildWithName(m_wrapper_sp, name.GetCString());
  /external/lldb/include/lldb/Interpreter/
Options.h 311 CommandInterpreter &m_interpreter; member in class:lldb_private::Options

Completed in 305 milliseconds

1 2