Home
last modified time | relevance | path

Searched refs:SetDetachOnError (Results 1 – 16 of 16) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBLaunchInfo.cpp334 void SBLaunchInfo::SetDetachOnError(bool enable) { in SetDetachOnError() function in SBLaunchInfo
335 LLDB_RECORD_METHOD(void, SBLaunchInfo, SetDetachOnError, (bool), enable); in SetDetachOnError()
337 m_opaque_sp->SetDetachOnError(enable); in SetDetachOnError()
404 LLDB_REGISTER_METHOD(void, SBLaunchInfo, SetDetachOnError, (bool)); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBLaunchInfo.i134 SetDetachOnError(bool enable);
/external/llvm-project/lldb/include/lldb/API/
DSBLaunchInfo.h172 void SetDetachOnError(bool enable);
/external/llvm-project/lldb/include/lldb/Host/
DProcessLaunchInfo.h143 void SetDetachOnError(bool enable);
/external/llvm-project/lldb/tools/debugserver/source/
DRNBContext.h124 void SetDetachOnError(bool detach) { m_detach_on_error = detach; } in SetDetachOnError() function
Ddebugserver.cpp1305 remote->Context().SetDetachOnError(g_detach_on_error); in main()
DRNBRemote.cpp2436 m_ctx.SetDetachOnError(should_detach); in HandlePacket_QSetDetachOnError()
/external/llvm-project/lldb/source/Host/common/
DProcessLaunchInfo.cpp203 void ProcessLaunchInfo::SetDetachOnError(bool enable) { in SetDetachOnError() function in ProcessLaunchInfo
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.h203 int SetDetachOnError(bool enable);
DProcessGDBRemote.cpp860 m_gdb_comm.SetDetachOnError(launch_flags & eLaunchFlagDetachOnError); in DoLaunch()
1148 m_gdb_comm.SetDetachOnError(attach_info.GetDetachOnError()); in DoAttachToProcessWithID()
1174 m_gdb_comm.SetDetachOnError(attach_info.GetDetachOnError()); in DoAttachToProcessWithName()
DGDBRemoteCommunicationClient.cpp1896 int GDBRemoteCommunicationClient::SetDetachOnError(bool enable) { in SetDetachOnError() function in GDBRemoteCommunicationClient
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp411 m_gdb_client.SetDetachOnError( in LaunchProcess()
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h103 void SetDetachOnError(bool b);
DProcess.h185 void SetDetachOnError(bool enable) { m_detach_on_error = enable; } in SetDetachOnError() function
/external/llvm-project/lldb/source/Target/
DTarget.cpp3820 void TargetProperties::SetDetachOnError(bool b) { in SetDetachOnError() function in TargetProperties
4209 SetDetachOnError(launch_info.GetFlags().Test(lldb::eLaunchFlagDetachOnError)); in SetProcessLaunchInfo()
/external/llvm-project/lldb/tools/lldb-vscode/
Dlldb-vscode.cpp1594 launch_info.SetDetachOnError(detatchOnError); in request_launch()