reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86159   SWIG_Python_SetConstant(d, "eLaunchFlagDisableASLR",SWIG_From_int(static_cast< int >(lldb::eLaunchFlagDisableASLR)));
tools/lldb/source/API/SBLaunchInfo.cpp
   41   m_opaque_sp->GetFlags().Reset(eLaunchFlagDebug | eLaunchFlagDisableASLR);
tools/lldb/source/API/SBTarget.cpp
  338       launch_flags |= eLaunchFlagDisableASLR;
tools/lldb/source/Commands/CommandObjectProcess.cpp
  185       m_options.launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
  187       m_options.launch_info.GetFlags().Clear(eLaunchFlagDisableASLR);
tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
   60   if (info.GetFlags().Test(lldb::eLaunchFlagDisableASLR)) {
tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
  393       launch_info.GetFlags().Test(eLaunchFlagDisableASLR));
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1325     m_process_launch_info.GetFlags().Set(eLaunchFlagDisableASLR);
 1327     m_process_launch_info.GetFlags().Clear(eLaunchFlagDisableASLR);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  889       m_gdb_comm.SetDisableASLR(launch_flags & eLaunchFlagDisableASLR);
tools/lldb/source/Target/Target.cpp
 3984   SetDisableASLR(launch_info.GetFlags().Test(lldb::eLaunchFlagDisableASLR));
 4061     this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableASLR);
 4063     this_->m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDisableASLR);
tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
  178                       eLaunchFlagDisableASLR);
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
 1247     flags |= lldb::eLaunchFlagDisableASLR;