Home
last modified time | relevance | path

Searched refs:GetFlags (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp61 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 DSBLaunchInfo.cpp39 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 DSBCommandInterpreter.cpp657 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 DThreadPlanShouldStopHere.h107 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 DProcessLaunchInfo.h66 Flags &GetFlags() { return m_flags; } in GetFlags() function
68 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
H A DThreadPlanStepOverRange.h38 GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values); in SetFlagsToDefault()
H A DThreadPlanStepOut.h46 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
H A DThreadPlanStepInRange.h64 GetFlags().Set(ThreadPlanStepInRange::s_default_flag_values); in SetFlagsToDefault()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepInRange.cpp88 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 DThreadPlanStepOverRange.cpp95 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
97 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
101 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
H A DThreadPlanStepOut.cpp166 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
168 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
H A DTarget.cpp2826 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 Dasan_fake_stack.cc95 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 Dasan_fake_stack.h108 u8 *GetFlags(uptr stack_size_log, uptr class_id) { in GetFlags() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DLog.cpp51 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 DStream.cpp296 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 DStream.h418 Flags &GetFlags();
426 const Flags &GetFlags() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp197 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 DMonitoringProcessLauncher.cpp48 assert(!resolved_info.GetFlags().Test(eLaunchFlagLaunchInTTY)); in LaunchProcess()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObject.cpp157 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 DArchitecturePPC64.cpp50 unsigned char other = sym.GetFlags() >> 8 & 0xFF; in GetLocalEntryOffset()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObject.h278 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 DArchitectureArm.cpp78 const uint32_t cpsr = reg_ctx_sp->GetFlags(0); in OverrideStopInfo()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DIOHandler.h136 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 DArchitectureMips.cpp145 uint32_t arch_flags = m_arch.GetFlags(); in GetInstructionAtAddress()

123