Home
last modified time | relevance | path

Searched refs:m_interpreter (Results 1 – 25 of 34) sorted by relevance

12

/external/llvm-project/lldb/source/DataFormatters/
DTypeSynthetic.cpp130 m_wrapper_sp(), m_interpreter(nullptr) { in FrontEnd()
139 m_interpreter = target_sp->GetDebugger().GetScriptInterpreter(); in FrontEnd()
141 if (m_interpreter != nullptr) in FrontEnd()
142 m_wrapper_sp = m_interpreter->CreateSyntheticScriptedProvider( in FrontEnd()
150 if (!m_wrapper_sp || !m_interpreter) in GetChildAtIndex()
153 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx); in GetChildAtIndex()
157 return (m_wrapper_sp && m_wrapper_sp->IsValid() && m_interpreter); in IsValid()
161 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
163 return m_interpreter->CalculateNumChildren(m_wrapper_sp, UINT32_MAX); in CalculateNumChildren()
167 if (!m_wrapper_sp || m_interpreter == nullptr) in CalculateNumChildren()
[all …]
/external/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
DOperatingSystemPython.cpp82 m_interpreter(nullptr), m_python_object_sp() { in OperatingSystemPython()
88 m_interpreter = target_sp->GetDebugger().GetScriptInterpreter(); in OperatingSystemPython()
89 if (m_interpreter) { in OperatingSystemPython()
99 if (m_interpreter->LoadScriptingModule(python_module_path_cstr, in OperatingSystemPython()
109 m_interpreter->OSPlugin_CreatePluginObject( in OperatingSystemPython()
122 if (!m_interpreter || !m_python_object_sp) in GetDynamicRegisterInfo()
132 m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp); in GetDynamicRegisterInfo()
154 if (!m_interpreter || !m_python_object_sp) in UpdateThreadList()
173 auto interpreter_lock = m_interpreter->AcquireInterpreterLock(); in UpdateThreadList()
184 m_interpreter->OSPlugin_ThreadsInfo(m_python_object_sp); in UpdateThreadList()
[all …]
DOperatingSystemPython.h81 lldb_private::ScriptInterpreter *m_interpreter; variable
/external/llvm-project/lldb/source/Commands/
DCommandObjectHelp.cpp94 m_interpreter.GetHelp(result, cmd_types); // General help in DoExecute()
100 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute()
148 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
155 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
167 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute()
169 m_interpreter.GetAlias(alias_full_name)->GetAliasExpansion(sstr); in DoExecute()
188 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute()
193 m_interpreter.GetCommandPrefix(), in DoExecute()
207 m_interpreter.HandleCompletionMatches(request); in HandleCompletion()
211 m_interpreter.GetCommandObject(request.GetParsedLine()[0].ref()); in HandleCompletion()
[all …]
DCommandObjectCommands.cpp159 options.SetEchoCommands(m_interpreter.GetEchoCommands()); in DoExecute()
160 options.SetEchoCommentCommands(m_interpreter.GetEchoCommentCommands()); in DoExecute()
163 m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result); in DoExecute()
168 m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result); in DoExecute()
423 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
436 m_interpreter.GetCommandObjectForCommand(raw_command_string); in DoExecute()
467 m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) { in HandleAliasingRawCommand()
468 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingRawCommand()
469 m_interpreter.UserCommandExists(alias_command)) { in HandleAliasingRawCommand()
474 if (CommandAlias *alias = m_interpreter.AddAlias( in HandleAliasingRawCommand()
[all …]
DCommandObjectQuit.cpp31 if (!m_interpreter.GetPromptOnQuit()) in ShouldAskForConfirmation()
69 if (!m_interpreter.Confirm(message.GetString(), true)) { in DoExecute()
94 if (!m_interpreter.SetQuitExitCode(exit_code)) { in DoExecute()
104 m_interpreter.BroadcastEvent(event_type); in DoExecute()
107 if (m_interpreter.GetSaveSessionOnQuit()) in DoExecute()
108 m_interpreter.SaveTranscript(result); in DoExecute()
DCommandObjectApropos.cpp52 m_interpreter.FindCommandsForApropos(search_word, commands_found, in DoExecute()
67 m_interpreter.OutputFormattedHelpText( in DoExecute()
83 m_interpreter, result.GetOutputStream(), 0, dump_qualified_name); in DoExecute()
DCommandObjectExpression.cpp298 if (m_interpreter.GetExecutionContext().GetFramePtr() == nullptr) in HandleCompletion()
299 m_interpreter.UpdateExecutionContext(nullptr); in HandleCompletion()
303 if (m_interpreter.GetExecutionContext().GetFramePtr() == nullptr) in HandleCompletion()
306 ExecutionContext exe_ctx(m_interpreter.GetExecutionContext()); in HandleCompletion()
410 ExecutionContext exe_ctx(m_interpreter.GetExecutionContext()); in EvaluateExpression()
600 m_interpreter.GetIOHandler(false)->SetIsDone(true); in DoExecute()
651 CommandHistory &history = m_interpreter.GetCommandHistory(); in DoExecute()
DCommandObjectSession.cpp45 if (m_interpreter.SaveTranscript(result, file_path.str())) in DoExecute()
135 m_interpreter.GetCommandHistory().Clear(); in DoExecute()
154 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute()
DCommandObjectRegexCommand.cpp51 if (m_interpreter.GetExpandRegexAliases()) in DoExecute()
56 return m_interpreter.HandleCommand( in DoExecute()
DCommandObjectTarget.cpp1004 if (m_interpreter.TruncationWarningNecessary()) { in DoExecute()
1005 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(), in DoExecute()
1007 m_interpreter.TruncationWarningGiven(); in DoExecute()
2045 if (m_interpreter.WasInterrupted()) in DoExecute()
2049 m_interpreter, result.GetOutputStream(), in DoExecute()
2075 if (m_interpreter.WasInterrupted()) in DoExecute()
2078 DumpModuleSymtab(m_interpreter, result.GetOutputStream(), module, in DoExecute()
2133 if (m_interpreter.WasInterrupted()) in DoExecute()
2137 m_interpreter, result.GetOutputStream(), in DoExecute()
2156 if (m_interpreter.WasInterrupted()) in DoExecute()
[all …]
DCommandObjectProcess.cpp65 if (!m_interpreter.Confirm(message, true)) { in StopProcessIfNecessary()
384 m_interpreter.UpdateExecutionContext(nullptr); in DoExecute()
443 m_interpreter.HandleCommand("process continue", eLazyBoolNo, result); in DoExecute()
513 bool synchronous_execution = m_interpreter.GetSynchronous(); in DoExecute()
782 PlatformSP platform_sp = m_interpreter.GetPlatform(true); in DoExecute()
817 Process *process = m_interpreter.GetExecutionContext().GetProcessPtr(); in GetProxyCommandObject()
1530 if (m_interpreter.Confirm( in DoExecute()
DCommandObjectScript.cpp102 ? m_interpreter.GetDebugger().GetScriptLanguage() in DoExecute()
DCommandObjectMultiword.cpp170 m_interpreter.OutputFormattedHelpText(output_stream, indented_command, in GenerateHelpText()
173 m_interpreter.OutputFormattedHelpText(output_stream, indented_command, in GenerateHelpText()
DCommandObjectSettings.cpp163 value_sp->AutoComplete(m_interpreter, request); in HandleArgumentCompletion()
479 m_interpreter.HandleCommandsFromFile(file, &clean_ctx, options, result); in DoExecute()
542 property->DumpDescription(m_interpreter, result.GetOutputStream(), 0, in DoExecute()
551 GetDebugger().DumpAllDescriptions(m_interpreter, in DoExecute()
DCommandObjectFrame.cpp709 if (m_interpreter.TruncationWarningNecessary()) { in DoExecute()
710 result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(), in DoExecute()
712 m_interpreter.TruncationWarningGiven(); in DoExecute()
967 if (!m_interpreter.Confirm( in DoExecute()
DCommandObjectThread.cpp377 bool synchronous_execution = m_interpreter.GetSynchronous(); in DoExecute()
647 bool synchronous_execution = m_interpreter.GetSynchronous(); in DoExecute()
913 bool synchronous_execution = m_interpreter.GetSynchronous(); in DoExecute()
1993 ProcessSP process_sp = m_interpreter.GetExecutionContext().GetProcessSP(); in DoGetProxyCommandObject()
2011 PluginManager::GetTraceStartCommand(trace_type->name, m_interpreter); in DoGetProxyCommandObject()
DCommandCompletions.cpp103 : m_interpreter(interpreter), m_request(request) {} in Completer()
115 CommandInterpreter &m_interpreter; member in __anonc8ffa9110111::Completer
DCommandObjectWatchpointCommand.cpp243 m_interpreter.GetLLDBCommandsFromIOHandler( in CollectDataForWatchpointCommandCallback()
/external/llvm-project/lldb/source/Target/
DStackFrameRecognizer.cpp28 : m_interpreter(interpreter), m_python_class(pclass) { in ScriptedStackFrameRecognizer()
30 m_interpreter->CreateFrameRecognizer(m_python_class.c_str()); in ScriptedStackFrameRecognizer()
35 if (!m_python_object_sp || !m_interpreter) in RecognizeFrame()
39 m_interpreter->GetRecognizedArguments(m_python_object_sp, frame); in RecognizeFrame()
/external/llvm-project/lldb/source/Interpreter/
DCommandObject.cpp44 : m_interpreter(interpreter), m_cmd_name(std::string(name)), in CommandObject()
54 Debugger &CommandObject::GetDebugger() { return m_interpreter.GetDebugger(); } in GetDebugger()
162 m_exe_ctx = m_interpreter.GetExecutionContext(); in CheckRequirements()
220 Process *process = m_interpreter.GetExecutionContext().GetProcessPtr(); in CheckRequirements()
281 m_exe_ctx = m_interpreter.GetExecutionContext(); in HandleCompletion()
294 CommandReturnObject result(m_interpreter.GetDebugger().GetUseColor()); in HandleCompletion()
942 return m_interpreter.GetDebugger().GetDummyTarget(); in GetDummyTarget()
946 return m_interpreter.GetDebugger().GetSelectedOrDummyTarget(prefer_dummy); in GetSelectedOrDummyTarget()
955 return *m_interpreter.GetDebugger().GetSelectedTarget(); in GetSelectedTarget()
967 target = m_interpreter.GetDebugger().GetSelectedTarget().get(); in GetDefaultThread()
[all …]
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandObject.h124 CommandInterpreter &GetCommandInterpreter() { return m_interpreter; } in GetCommandInterpreter()
358 CommandInterpreter &m_interpreter; variable
/external/llvm-project/lldb/include/lldb/Target/
DStackFrameRecognizer.h76 lldb_private::ScriptInterpreter *m_interpreter; variable
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp69 SBCommandInterpreter sb_interpreter(&m_interpreter); in DoExecute()
70 SBDebugger debugger_sb(m_interpreter.GetDebugger().shared_from_this()); in DoExecute()
/external/llvm-project/lldb/include/lldb/DataFormatters/
DTypeSynthetic.h445 ScriptInterpreter *m_interpreter; variable

12