/external/llvm-project/lldb/source/API/ |
D | SBLaunchInfo.cpp | 334 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/ |
D | SBLaunchInfo.i | 134 SetDetachOnError(bool enable);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBLaunchInfo.h | 172 void SetDetachOnError(bool enable);
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | ProcessLaunchInfo.h | 143 void SetDetachOnError(bool enable);
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | RNBContext.h | 124 void SetDetachOnError(bool detach) { m_detach_on_error = detach; } in SetDetachOnError() function
|
D | debugserver.cpp | 1305 remote->Context().SetDetachOnError(g_detach_on_error); in main()
|
D | RNBRemote.cpp | 2436 m_ctx.SetDetachOnError(should_detach); in HandlePacket_QSetDetachOnError()
|
/external/llvm-project/lldb/source/Host/common/ |
D | ProcessLaunchInfo.cpp | 203 void ProcessLaunchInfo::SetDetachOnError(bool enable) { in SetDetachOnError() function in ProcessLaunchInfo
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationClient.h | 203 int SetDetachOnError(bool enable);
|
D | ProcessGDBRemote.cpp | 860 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()
|
D | GDBRemoteCommunicationClient.cpp | 1896 int GDBRemoteCommunicationClient::SetDetachOnError(bool enable) { in SetDetachOnError() function in GDBRemoteCommunicationClient
|
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.cpp | 411 m_gdb_client.SetDetachOnError( in LaunchProcess()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | Target.h | 103 void SetDetachOnError(bool b);
|
D | Process.h | 185 void SetDetachOnError(bool enable) { m_detach_on_error = enable; } in SetDetachOnError() function
|
/external/llvm-project/lldb/source/Target/ |
D | Target.cpp | 3820 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/ |
D | lldb-vscode.cpp | 1594 launch_info.SetDetachOnError(detatchOnError); in request_launch()
|