| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 60 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-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadPlanShouldStopHere.h | 104 lldb_private::Flags &GetFlags() { return m_flags; } in GetFlags() function 106 const lldb_private::Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| H A D | ThreadPlanStepOverRange.h | 37 GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values); in SetFlagsToDefault()
|
| H A D | ThreadPlanStepInRange.h | 58 GetFlags().Set(ThreadPlanStepInRange::s_default_flag_values); in SetFlagsToDefault()
|
| H A D | ThreadPlanStepOut.h | 45 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandOptionsProcessLaunch.cpp | 37 launch_info.GetFlags().Set(eLaunchFlagStopAtEntry); in SetOptionValue() 86 launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY); in SetOptionValue()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepInRange.cpp | 69 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug() 71 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug() 85 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 87 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
|
| H A D | ThreadPlanStepOverRange.cpp | 92 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 94 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 98 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
|
| H A D | Target.cpp | 2936 launch_info.GetFlags().Set(eLaunchFlagDebug); in Launch() 2972 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in Launch() 3027 launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) in Launch() 3040 if (launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) in Launch() 3226 if (info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in FinalizeFileActions() 3232 if (info.GetFlags().Test(eLaunchFlagDisableSTDIO)) { in FinalizeFileActions() 4342 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDetachOnError); in DetachOnErrorValueChangedCallback() 4349 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback() 4351 m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback() 4363 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableSTDIO); in DisableSTDIOValueChangedCallback() [all …]
|
| H A D | ThreadPlanStepOut.cpp | 176 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 178 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 250 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch() 252 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch() 255 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch()
|
| H A D | AppleThreadPlanStepThroughObjCTrampoline.h | 94 GetFlags().Set(ThreadPlanStepInRange::GetDefaultFlagsValue()); in SetFlagsToDefault()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | ProcessLaunchInfo.h | 64 Flags &GetFlags() { return m_flags; } in GetFlags() function 66 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_fake_stack.cpp | 94 u8 *flags = GetFlags(stack_size_log, class_id); in Allocate() 144 u8 *flags = GetFlags(stack_size_log(), class_id); in GC() 161 u8 *flags = GetFlags(stack_size_log(), class_id); in ForEachFakeFrame()
|
| H A D | asan_fake_stack.h | 107 u8 *GetFlags(uptr stack_size_log, uptr class_id) { in GetFlags() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 161 const uint32_t flags = GetFlags().Get(); in CheckRequirements() 215 if (GetFlags().AnySet(eCommandProcessMustBeLaunched | in CheckRequirements() 220 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 239 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 247 if (GetFlags().Test(eCommandProcessMustBePaused)) { in CheckRequirements() 256 if (GetFlags().Test(eCommandProcessMustBeTraced)) { in CheckRequirements()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Log.cpp | 58 uint32_t Log::GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry, in GetFlags() function in Log 213 : GetFlags(error_stream, *iter, categories); in EnableLogChannel() 228 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
|
| H A D | Stream.cpp | 185 Flags &Stream::GetFlags() { return m_flags; } in GetFlags() function in Stream 188 const Flags &Stream::GetFlags() const { return m_flags; } in GetFlags() function in Stream
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Stream.h | 248 Flags &GetFlags(); 254 const Flags &GetFlags() const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
| H A D | ArchitecturePPC64.cpp | 50 unsigned char other = sym.GetFlags() >> 8 & 0xFF; in GetLocalEntryOffset()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | MonitoringProcessLauncher.cpp | 47 assert(!resolved_info.GetFlags().Test(eLaunchFlagLaunchInTTY)); in LaunchProcess()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBLaunchInfo.cpp | 46 m_opaque_sp->GetFlags().Reset(eLaunchFlagDebug | eLaunchFlagDisableASLR); in SBLaunchInfo() 234 return m_opaque_sp->GetFlags().Get(); in GetLaunchFlags() 240 m_opaque_sp->GetFlags().Reset(flags); in SetLaunchFlags()
|
| H A D | SBCommandInterpreter.cpp | 739 uint32_t SBCommand::GetFlags() { in GetFlags() function in SBCommand 740 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBCommand, GetFlags); in GetFlags() 742 return (IsValid() ? m_opaque_sp->GetFlags().Get() : 0); in GetFlags() 749 m_opaque_sp->GetFlags().Set(flags); in SetFlags() 864 LLDB_REGISTER_METHOD(uint32_t, SBCommand, GetFlags, ()); in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 255 Flags &GetFlags() { return m_flags; } in GetFlags() function 261 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 79 const uint32_t cpsr = reg_ctx_sp->GetFlags(0); in OverrideStopInfo()
|