Home
last modified time | relevance | path

Searched refs:m_debugger (Results 1 – 22 of 22) sorted by relevance

/openbsd-src/gnu/llvm/lldb/tools/driver/
H A DDriver.cpp105 : SBBroadcaster("Driver"), m_debugger(SBDebugger::Create(false)) { in Driver()
108 m_debugger.SetCloseInputOnEOF(false); in Driver()
113 SBDebugger::Destroy(m_debugger); in ~Driver()
190 m_debugger.SkipLLDBInitFiles(false); in ProcessArgs()
191 m_debugger.SkipAppInitFiles(false); in ProcessArgs()
194 m_debugger.SetUseColor(false); in ProcessArgs()
231 m_debugger.SkipLLDBInitFiles(true); in ProcessArgs()
232 m_debugger.SkipAppInitFiles(true); in ProcessArgs()
237 m_debugger.GetInstanceName()); in ProcessArgs()
268 m_debugger.SetScriptLanguage(m_debugger.GetScriptingLanguage(arg_value)); in ProcessArgs()
[all …]
H A DDriver.h94 lldb::SBDebugger &GetDebugger() { return m_debugger; } in GetDebugger()
99 lldb::SBDebugger m_debugger;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DProcessDebugger.cpp70 return m_session_data->m_debugger->GetProcess().GetProcessId(); in GetDebuggedProcessId()
89 debugger_thread = m_session_data->m_debugger; in DetachProcess()
139 m_session_data->m_debugger.reset(new DebuggerThread(delegate)); in LaunchProcess()
140 DebuggerThreadSP debugger = m_session_data->m_debugger; in LaunchProcess()
179 m_session_data->m_debugger = debugger; in AttachProcess()
227 debugger_thread = m_session_data->m_debugger; in DestroyProcess()
251 caused_stop = ::DebugBreakProcess(m_session_data->m_debugger->GetProcess() in HaltProcess()
279 HostProcess process = m_session_data->m_debugger->GetProcess(); in ReadMemory()
308 HostProcess process = m_session_data->m_debugger->GetProcess(); in WriteMemory()
338 HostProcess process = m_session_data->m_debugger->GetProcess(); in AllocateMemory()
[all …]
H A DProcessWindows.cpp214 m_session_data->m_debugger->GetProcess().GetProcessId(), in DoResume()
240 m_session_data->m_debugger->GetActiveException().lock(); in DoResume()
245 m_session_data->m_debugger->ContinueAsyncException( in DoResume()
250 m_session_data->m_debugger->GetProcess().GetProcessId(), in DoResume()
364 m_session_data->m_debugger->GetActiveException(); in RefreshStateAfterStop()
370 m_session_data->m_debugger->GetProcess().GetProcessId()); in RefreshStateAfterStop()
389 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, in RefreshStateAfterStop()
406 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, id); in RefreshStateAfterStop()
458 m_session_data->m_debugger->GetProcess().GetProcessId(), pc, in RefreshStateAfterStop()
651 DebuggerThreadSP debugger = m_session_data->m_debugger; in OnDebuggerConnected()
H A DProcessDebugger.h39 DebuggerThreadSP m_debugger; variable
H A DNativeProcessWindows.cpp139 m_session_data->m_debugger->GetActiveException().lock(); in Resume()
144 m_session_data->m_debugger->ContinueAsyncException( in Resume()
441 *this, m_session_data->m_debugger->GetMainThread())); in OnDebuggerConnected()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp168 options.GetEnableIO(), m_debugger, result); in ExecuteOneLine()
208 if (!m_debugger.GetInputFile().IsValid()) in ExecuteInterpreterLoop()
211 IOHandlerSP io_handler_sp(new IOHandlerLuaInterpreter(m_debugger, *this)); in ExecuteInterpreterLoop()
212 m_debugger.RunIOHandlerAsync(io_handler_sp); in ExecuteInterpreterLoop()
328 new IOHandlerLuaInterpreter(m_debugger, *this, eIOHandlerBreakpoint)); in CollectDataForBreakpointCommandCallback()
330 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForBreakpointCommandCallback()
336 new IOHandlerLuaInterpreter(m_debugger, *this, eIOHandlerWatchpoint)); in CollectDataForWatchpointCommandCallback()
338 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForWatchpointCommandCallback()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2910 : m_debugger(debugger), m_main_window_sp(main_window_sp) { in ProcessAttachFormDelegate()
2954 Target *target = m_debugger.GetSelectedTarget().get(); in GetDefaultProcessName()
2967 m_debugger.GetCommandInterpreter().GetExecutionContext(); in StopRunningProcess()
2989 Target *target = m_debugger.GetSelectedTarget().get(); in GetTarget()
2995 m_debugger.GetTargetList().CreateTarget( in GetTarget()
2996 m_debugger, "", "", eLoadDependentsNo, nullptr, new_target_sp); in GetTarget()
3003 m_debugger.GetTargetList().SetSelectedTarget(new_target_sp); in GetTarget()
3062 Debugger &m_debugger; member in curses::ProcessAttachFormDelegate
3077 TargetCreateFormDelegate(Debugger &debugger) : m_debugger(debugger) { in TargetCreateFormDelegate()
3141 Status status = m_debugger.GetTargetList().CreateTarget( in GetTarget()
[all …]
H A DStreamAsynchronousIO.cpp19 : Stream(0, 4, eByteOrderBig, colors), m_debugger(debugger), m_data(), in StreamAsynchronousIO()
29 m_debugger.PrintAsync(m_data.data(), m_data.size(), m_for_stdout); in Flush()
H A DIOHandler.cpp68 : m_debugger(debugger), m_input_sp(input_sp), m_output_sp(output_sp), in IOHandler()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.cpp33 m_debugger.GetErrorStream().PutCString( in ExecuteOneLine()
39 m_debugger.GetErrorStream().PutCString( in ExecuteInterpreterLoop()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp134 m_debugger(debugger), m_synchronous_execution(true), in CommandInterpreter()
274 CommandReturnObject result(m_debugger.GetUseColor()); in Initialize()
1758 Target &target = exe_target ? *exe_target : m_debugger.GetDummyTarget(); in PreprocessCommand()
2138 if (m_debugger.GetAutoConfirm()) in Confirm()
2142 new IOHandlerConfirm(m_debugger, message, default_answer); in Confirm()
2144 m_debugger.RunIOHandlerSync(io_handler_sp); in Confirm()
2471 platform_sp = m_debugger.GetPlatformList().GetSelectedPlatform(); in GetPlatform()
2541 bool old_async_execution = m_debugger.GetAsyncExecution(); in HandleCommands()
2544 m_debugger.SetAsyncExecution(false); in HandleCommands()
2555 m_debugger.GetPrompt().str().c_str(), cmd); in HandleCommands()
[all …]
H A DScriptInterpreter.cpp34 : m_debugger(debugger), m_script_lang(script_lang), in ScriptInterpreter()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleLoader.h40 : m_debugger(debugger), m_bundle_description(bundle_description), in TraceIntelPTBundleLoader()
122 Debugger &m_debugger; variable
H A DTraceIntelPTBundleLoader.cpp96 Status error = m_debugger.GetTargetList().CreateTarget( in CreateEmptyProcess()
97 m_debugger, /*user_exe_path*/ StringRef(), triple, eLoadDependentsNo, in CreateEmptyProcess()
203 m_debugger.GetTargetList().DeleteTarget(parsed_process.target_sp); in LoadBundle()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp411 m_dictionary_name(m_debugger.GetInstanceName().AsCString()), in ScriptInterpreterPythonImpl()
460 m_dictionary_name.c_str(), m_debugger.GetID()); in ScriptInterpreterPythonImpl()
507 bool batch_mode = m_debugger.GetCommandInterpreter().GetBatchCommandMode(); in IOHandlerInputComplete()
663 m_dictionary_name.c_str(), m_debugger.GetID()); in EnterSession()
666 m_debugger.GetID()); in EnterSession()
676 m_dictionary_name.c_str(), m_debugger.GetID()); in EnterSession()
679 m_debugger.GetID()); in EnterSession()
691 m_debugger.AdoptTopIOHandlerFilesIfInvalid(top_in_sp, top_out_sp, in EnterSession()
832 options.GetEnableIO(), m_debugger, result); in ExecuteOneLine()
910 Debugger &debugger = m_debugger; in ExecuteInterpreterLoop()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DStreamAsynchronousIO.h33 Debugger &m_debugger;
H A DIOHandler.h134 Debugger &GetDebugger() { return m_debugger; } in GetDebugger()
168 Debugger &m_debugger;
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h446 Debugger &GetDebugger() { return m_debugger; } in GetDebugger()
706 Debugger &m_debugger; // The debugger session that this interpreter is variable
H A DScriptInterpreter.h590 Debugger &m_debugger;
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DTarget.h1029 Debugger &GetDebugger() { return m_debugger; } in GetDebugger()
1498 Debugger &m_debugger; variable
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTarget.cpp97 ExecutionContextScope(), m_debugger(debugger), m_platform_sp(platform_sp), in Target()
223 language = m_debugger.GetREPLLanguage(); in GetREPL()
2833 StreamSP output_sp = m_debugger.GetAsyncOutputStream(); in RunStopHooks()