| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 61 if (info.GetFlags().Test(lldb::eLaunchFlagDisableASLR)) { in DisableASLRIfRequested() 93 if (info.GetFlags().Test(eLaunchFlagLaunchInSeparateProcessGroup)) { in ChildFunc() 137 if (info.GetFlags().Test(eLaunchFlagDebug)) { in ChildFunc()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBLaunchInfo.cpp | 39 m_opaque_sp->GetFlags().Reset(eLaunchFlagDebug | eLaunchFlagDisableASLR); in SBLaunchInfo() 135 return m_opaque_sp->GetFlags().Get(); in GetLaunchFlags() 139 m_opaque_sp->GetFlags().Reset(flags); in SetLaunchFlags()
|
| H A D | SBCommandInterpreter.cpp | 657 uint32_t SBCommand::GetFlags() { in GetFlags() function in SBCommand 658 return (IsValid() ? m_opaque_sp->GetFlags().Get() : 0); in GetFlags() 663 m_opaque_sp->GetFlags().Set(flags); in SetFlags()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | ThreadPlanShouldStopHere.h | 107 lldb_private::Flags &GetFlags() { return m_flags; } in GetFlags() function 109 const lldb_private::Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| H A D | ProcessLaunchInfo.h | 66 Flags &GetFlags() { return m_flags; } in GetFlags() function 68 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| H A D | ThreadPlanStepOverRange.h | 38 GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values); in SetFlagsToDefault()
|
| H A D | ThreadPlanStepOut.h | 46 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
|
| H A D | ThreadPlanStepInRange.h | 64 GetFlags().Set(ThreadPlanStepInRange::s_default_flag_values); in SetFlagsToDefault()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlanStepInRange.cpp | 88 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug() 90 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug() 104 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 106 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
|
| H A D | ThreadPlanStepOverRange.cpp | 95 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 97 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 101 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
|
| H A D | ThreadPlanStepOut.cpp | 166 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 168 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
|
| H A D | Target.cpp | 2826 launch_info.GetFlags().Set(eLaunchFlagDebug); in Launch() 2840 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in Launch() 2894 !launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) { in Launch() 2907 if (!launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) { in Launch() 3076 if (info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in FinalizeFileActions() 3082 if (info.GetFlags().Test(eLaunchFlagDisableSTDIO)) { in FinalizeFileActions() 4154 this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDetachOnError); in DetachOnErrorValueChangedCallback() 4164 this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback() 4166 this_->m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback() 4174 this_->m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableSTDIO); in DisableSTDIOValueChangedCallback() [all …]
|
| /freebsd-12.1/contrib/compiler-rt/lib/asan/ |
| H A D | asan_fake_stack.cc | 95 u8 *flags = GetFlags(stack_size_log, class_id); in Allocate() 145 u8 *flags = GetFlags(stack_size_log(), class_id); in GC() 162 u8 *flags = GetFlags(stack_size_log(), class_id); in ForEachFakeFrame()
|
| H A D | asan_fake_stack.h | 108 u8 *GetFlags(uptr stack_size_log, uptr class_id) { in GetFlags() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Log.cpp | 51 uint32_t Log::GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry, in GetFlags() function in Log 215 : GetFlags(error_stream, *iter, categories); in EnableLogChannel() 230 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
|
| H A D | Stream.cpp | 296 Flags &Stream::GetFlags() { return m_flags; } in GetFlags() function in Stream 301 const Flags &Stream::GetFlags() const { return m_flags; } in GetFlags() function in Stream
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | Stream.h | 418 Flags &GetFlags(); 426 const Flags &GetFlags() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/ |
| H A D | PlatformNetBSD.cpp | 197 if (launch_info.GetFlags().Test(eLaunchFlagDebug)) { in GetResumeCountForLaunchInfo() 259 launch_info.GetFlags().Set(eLaunchFlagDebug); in DebugProcess()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/ |
| H A D | MonitoringProcessLauncher.cpp | 48 assert(!resolved_info.GetFlags().Test(eLaunchFlagLaunchInTTY)); in LaunchProcess()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 157 const uint32_t flags = GetFlags().Get(); in CheckRequirements() 211 if (GetFlags().AnySet(eCommandProcessMustBeLaunched | in CheckRequirements() 216 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 236 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 245 if (GetFlags().Test(eCommandProcessMustBePaused)) { in CheckRequirements()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ |
| H A D | ArchitecturePPC64.cpp | 50 unsigned char other = sym.GetFlags() >> 8 & 0xFF; in GetLocalEntryOffset()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 278 Flags &GetFlags() { return m_flags; } in GetFlags() function 286 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 78 const uint32_t cpsr = reg_ctx_sp->GetFlags(0); in OverrideStopInfo()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 136 Flags &GetFlags() { return m_flags; } in GetFlags() function 138 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Mips/ |
| H A D | ArchitectureMips.cpp | 145 uint32_t arch_flags = m_arch.GetFlags(); in GetInstructionAtAddress()
|