Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h104 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 DThreadPlanStepOverRange.h37 GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values); in SetFlagsToDefault()
H A DThreadPlanStepInRange.h58 GetFlags().Set(ThreadPlanStepInRange::s_default_flag_values); in SetFlagsToDefault()
H A DThreadPlanStepOut.h45 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp39 launch_info.GetFlags().Set(eLaunchFlagStopAtEntry); in SetOptionValue()
88 launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY); in SetOptionValue()
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanStepInRange.cpp70 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
72 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
86 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
88 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
H A DThreadPlanStepOverRange.cpp93 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
95 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug()
99 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in SetupAvoidNoDebug()
H A DTarget.cpp3016 launch_info.GetFlags().Set(eLaunchFlagDebug); in Launch()
3044 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in Launch()
3107 launch_info.GetFlags().Test(eLaunchFlagStopAtEntry); in Launch()
3125 if (launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) in Launch()
3309 if (info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in FinalizeFileActions()
3315 if (info.GetFlags().Test(eLaunchFlagDisableSTDIO)) { in FinalizeFileActions()
4641 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDetachOnError); in DetachOnErrorValueChangedCallback()
4648 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback()
4650 m_launch_info.GetFlags().Clear(lldb::eLaunchFlagDisableASLR); in DisableASLRValueChangedCallback()
4662 m_launch_info.GetFlags().Set(lldb::eLaunchFlagDisableSTDIO); in DisableSTDIOValueChangedCallback()
[all …]
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp249 info.GetFlags().Test(eLaunchFlagLaunchInSeparateProcessGroup)), in ForkLaunchInfo()
250 debug(info.GetFlags().Test(eLaunchFlagDebug)), in ForkLaunchInfo()
251 disable_aslr(info.GetFlags().Test(eLaunchFlagDisableASLR)), in ForkLaunchInfo()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DTUSchedulerTests.cpp1227 auto GetFlags = [&](PathRef Header) { in TEST_F() local
1255 EXPECT_THAT(GetFlags(NoCmd), Contains("-DMAIN")) in TEST_F()
1257 EXPECT_THAT(GetFlags(Unreliable), Contains("-DMAIN")) in TEST_F()
1259 EXPECT_THAT(GetFlags(OK), Not(Contains("-DMAIN"))) in TEST_F()
1271 EXPECT_THAT(GetFlags(NoCmd), in TEST_F()
1274 EXPECT_THAT(GetFlags(NotIncluded), in TEST_F()
1282 EXPECT_THAT(GetFlags(NoCmd), in TEST_F()
1289 EXPECT_THAT(GetFlags(NoCmd), Contains("-DMAIN3")) in TEST_F()
1291 EXPECT_THAT(GetFlags(Unreliable), Contains("-DMAIN")) in TEST_F()
1298 EXPECT_THAT(GetFlags(NoCmd), Not(Contains("-DMAIN3"))) in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DProcessLaunchInfo.h64 Flags &GetFlags() { return m_flags; } in GetFlags() function
66 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandObject.cpp163 const uint32_t flags = GetFlags().Get(); in CheckRequirements()
217 if (GetFlags().AnySet(eCommandProcessMustBeLaunched | in CheckRequirements()
222 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements()
241 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements()
249 if (GetFlags().Test(eCommandProcessMustBePaused)) { in CheckRequirements()
258 if (GetFlags().Test(eCommandProcessMustBeTraced)) { in CheckRequirements()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp271 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch()
273 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch()
276 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch()
H A DAppleThreadPlanStepThroughObjCTrampoline.h102 GetFlags().Set(ThreadPlanStepInRange::GetDefaultFlagsValue()); in SetFlagsToDefault()
/llvm-project-15.0.7/lldb/source/API/
H A DSBLaunchInfo.cpp45 m_opaque_sp->GetFlags().Reset(eLaunchFlagDebug | eLaunchFlagDisableASLR); in SBLaunchInfo()
222 return m_opaque_sp->GetFlags().Get(); in GetLaunchFlags()
228 m_opaque_sp->GetFlags().Reset(flags); in SetLaunchFlags()
H A DSBCommandInterpreter.cpp683 uint32_t SBCommand::GetFlags() { in GetFlags() function in SBCommand
686 return (IsValid() ? m_opaque_sp->GetFlags().Get() : 0); in GetFlags()
693 m_opaque_sp->GetFlags().Set(flags); in SetFlags()
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DProcessLauncherWindows.cpp93 if (launch_info.GetFlags().Test(eLaunchFlagDebug)) in LaunchProcess()
96 if (launch_info.GetFlags().Test(eLaunchFlagDisableSTDIO)) in LaunchProcess()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DProcessLaunchInfoTest.cpp26 EXPECT_EQ(eLaunchFlagStopAtEntry, Info.GetFlags().Get()); in TEST()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_fake_stack.cpp95 u8 *flags = GetFlags(stack_size_log, class_id); in Allocate()
144 u8 *flags = GetFlags(stack_size_log(), class_id); in GC()
160 u8 *flags = GetFlags(stack_size_log(), class_id); in ForEachFakeFrame()
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/PPC64/
H A DArchitecturePPC64.cpp43 unsigned char other = sym.GetFlags() >> 8 & 0xFF; in GetLocalEntryOffset()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStream.h248 Flags &GetFlags();
254 const Flags &GetFlags() const;
/llvm-project-15.0.7/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp48 assert(!resolved_info.GetFlags().Test(eLaunchFlagLaunchInTTY)); in LaunchProcess()
/llvm-project-15.0.7/lldb/source/Utility/
H A DLog.cpp63 uint32_t Log::GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry, in GetFlags() function in Log
221 : GetFlags(error_stream, *iter, categories); in EnableLogChannel()
236 : GetFlags(error_stream, *iter, categories); in DisableLogChannel()
/llvm-project-15.0.7/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp72 const uint32_t cpsr = reg_ctx_sp->GetFlags(0); in OverrideStopInfo()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandObject.h261 Flags &GetFlags() { return m_flags; } in GetFlags() function
267 const Flags &GetFlags() const { return m_flags; } in GetFlags() function

123