| /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 | 41 GetFlags().Set(ThreadPlanStepOverRange::s_default_flag_values);
|
| H A D | ThreadPlanStepInRange.h | 58 GetFlags().Set(ThreadPlanStepInRange::s_default_flag_values); in SetFlagsToDefault()
|
| H A D | ThreadPlanStepOut.h | 46 GetFlags().Set(ThreadPlanStepOut::s_default_flag_values); in SetFlagsToDefault()
|
| /llvm-project/lldb/source/Target/ |
| H A D | ThreadPlanStepInRange.cpp | 70 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 D | ThreadPlanStepOverRange.cpp | 96 GetFlags().Set(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 98 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in SetupAvoidNoDebug() 102 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in IsEquivalentContext()
|
| H A D | Target.cpp | 3357 launch_info.GetFlags().Set(eLaunchFlagDebug); in Launch() 3373 if (launch_info.GetFlags().Test(eLaunchFlagLaunchInTTY)) in CreateTrace() 3435 launch_info.GetFlags().Test(eLaunchFlagStopAtEntry); in Attach() 3453 if (launch_info.GetFlags().Test(eLaunchFlagStopAtEntry)) in Attach() 3639 if (info.GetFlags().Test(eLaunchFlagLaunchInTTY)) { in ClearDummySignals() 3645 if (info.GetFlags().Test(eLaunchFlagDisableSTDIO)) { in ClearDummySignals() 4999 SetDetachOnError(launch_info.GetFlags().Test(lldb::eLaunchFlagDetachOnError)); 5000 SetDisableASLR(launch_info.GetFlags().Test(lldb::eLaunchFlagDisableASLR)); 5002 launch_info.GetFlags().Test(lldb::eLaunchFlagInheritTCCFromParent)); 5003 SetDisableSTDIO(launch_info.GetFlags() [all...] |
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandOptionsProcessLaunch.cpp | 41 launch_info.GetFlags().Set(eLaunchFlagStopAtEntry); in SetOptionValue() 92 launch_info.GetFlags().Set(eLaunchFlagLaunchInTTY); in SetOptionValue()
|
| /llvm-project/lldb/include/lldb/Host/ |
| H A D | ProcessLaunchInfo.h | 63 Flags &GetFlags() { return m_flags; } in GetFlags() function 65 const Flags &GetFlags() const { return m_flags; } in GetFlags() function
|
| /llvm-project/lldb/source/Host/posix/ |
| H A D | ProcessLauncherPosixFork.cpp | 235 info.GetFlags().Test(eLaunchFlagLaunchInSeparateProcessGroup)), in MakeForkActions() 236 debug(info.GetFlags().Test(eLaunchFlagDebug)), 237 disable_aslr(info.GetFlags().Test(eLaunchFlagDisableASLR)), in FixupEnvironment()
|
| /llvm-project/clang-tools-extra/clangd/unittests/ |
| H A D | TUSchedulerTests.cpp | 1353 auto GetFlags = [&](PathRef Header) { in TEST_F() local 1373 EXPECT_THAT(GetFlags(Main), Contains("-DMAIN")) << "sanity check"; in TEST_F() 1374 EXPECT_THAT(GetFlags(NoCmd), Not(Contains("-DMAIN"))) << "no includes yet"; in TEST_F() 1384 EXPECT_THAT(GetFlags(NoCmd), Contains("-DMAIN")) in TEST_F() 1386 EXPECT_THAT(GetFlags(Unreliable), Contains("-DMAIN")) in TEST_F() 1388 EXPECT_THAT(GetFlags(OK), Not(Contains("-DMAIN"))) in TEST_F() 1390 EXPECT_THAT(GetFlags(NotIncluded), Not(Contains("-DMAIN"))) in TEST_F() 1400 EXPECT_THAT(GetFlags(NoCmd), in TEST_F() 1403 EXPECT_THAT(GetFlags(NotIncluded), in TEST_F() 1411 EXPECT_THAT(GetFlags(NoCmd), in TEST_F() [all …]
|
| /llvm-project/lldb/source/Plugins/ABI/RISCV/ |
| H A D | ABISysV_riscv.h | 64 lldb_private::Flags arch_flags = arch.GetFlags(); in CallFrameAddressIsValid() 79 lldb_private::Flags arch_flags(arch.GetFlags()); in CodeAddressIsValid()
|
| /llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 271 GetFlags().Set(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch() 273 GetFlags().Clear(ThreadPlanShouldStopHere::eStepInAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch() 276 GetFlags().Clear(ThreadPlanShouldStopHere::eStepOutAvoidNoDebug); in AppleThreadPlanStepThroughDirectDispatch()
|
| H A D | AppleThreadPlanStepThroughObjCTrampoline.h | 102 GetFlags().Set(ThreadPlanStepInRange::GetDefaultFlagsValue()); in SetFlagsToDefault()
|
| /llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 154 const uint32_t flags = GetFlags().Get(); in CheckRequirements() 208 if (GetFlags().AnySet(eCommandProcessMustBeLaunched | in CheckRequirements() 213 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 232 if (GetFlags().Test(eCommandProcessMustBeLaunched)) { in CheckRequirements() 240 if (GetFlags().Test(eCommandProcessMustBePaused)) { in CheckRequirements() 249 if (GetFlags().Test(eCommandProcessMustBeTraced)) { in CheckRequirements()
|
| /llvm-project/lldb/source/API/ |
| H A D | SBLaunchInfo.cpp | 47 m_opaque_sp->GetFlags().Reset(eLaunchFlagDebug | eLaunchFlagDisableASLR); in SBLaunchInfo() 225 return m_opaque_sp->GetFlags().Get(); in GetLaunchFlags() 231 m_opaque_sp->GetFlags().Reset(flags); in SetLaunchFlags()
|
| /llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_fake_stack.cpp | 95 u8 *flags = GetFlags(stack_size_log, class_id); in Allocate() 158 u8 *flags = GetFlags(stack_size_log(), class_id); in GC() 178 u8 *flags = GetFlags(stack_size_log(), class_id); in ForEachFakeFrame()
|
| /llvm-project/lldb/source/Host/windows/ |
| H A D | ProcessLauncherWindows.cpp | 93 if (launch_info.GetFlags().Test(eLaunchFlagDebug)) in LaunchProcess() 96 if (launch_info.GetFlags().Test(eLaunchFlagDisableSTDIO)) in LaunchProcess()
|
| /llvm-project/lldb/unittests/Host/ |
| H A D | ProcessLaunchInfoTest.cpp | 26 EXPECT_EQ(eLaunchFlagStopAtEntry, Info.GetFlags().Get()); in TEST()
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | Stream.h | 292 Flags &GetFlags(); 298 const Flags &GetFlags() const;
|
| /llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
| H A D | ArchitecturePPC64.cpp | 43 unsigned char other = sym.GetFlags() >> 8 & 0xFF; in GetLocalEntryOffset()
|
| /llvm-project/lldb/source/Host/common/ |
| H A D | MonitoringProcessLauncher.cpp | 48 assert(!resolved_info.GetFlags().Test(eLaunchFlagLaunchInTTY)); in LaunchProcess()
|
| /llvm-project/lldb/source/Utility/ |
| H A D | Log.cpp | 68 Log::MaskType Log::GetFlags(llvm::raw_ostream &stream, in GetFlags() 245 : GetFlags(error_stream, *iter, categories); in DisableLogChannel() 261 : GetFlags(error_stream, *iter, categories); in DumpLogChannel() 64 Log::MaskType Log::GetFlags(llvm::raw_ostream &stream, GetFlags() function in Log
|
| /llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObject.h | 289 Flags &GetFlags() { return m_flags; } 295 const Flags &GetFlags() const { return m_flags; } 287 Flags &GetFlags() { return m_flags; } GetFlags() function 293 const Flags &GetFlags() const { return m_flags; } GetFlags() function
|
| /llvm-project/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 72 const uint32_t cpsr = reg_ctx_sp->GetFlags(0); in OverrideStopInfo()
|