reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/API/SBCommandInterpreter.cpp
  822   return (IsValid() ? m_opaque_sp->GetFlags().Get() : 0);
tools/lldb/source/API/SBLaunchInfo.cpp
  203   return m_opaque_sp->GetFlags().Get();
tools/lldb/source/Core/Section.cpp
  330             m_file_size, Get());
tools/lldb/source/Interpreter/CommandObject.cpp
  154   const uint32_t flags = GetFlags().Get();
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 3319                          section->Get(), section->GetName().GetStringRef()))
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 4116             uint32_t section_type = symbol_section->Get() & SECTION_TYPE;
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  774   uint32_t launch_flags = launch_info.GetFlags().Get();
tools/lldb/source/Target/StackFrame.cpp
  277   if ((m_flags.Get() & resolve_scope) != resolve_scope) {
tools/lldb/unittests/Host/ProcessLaunchInfoTest.cpp
   26   EXPECT_EQ(eLaunchFlagStopAtEntry, Info.GetFlags().Get());
tools/lldb/unittests/Utility/FlagsTest.cpp
   32   EXPECT_EQ(0x3U, f.Get());
   38   EXPECT_EQ(0x3U, f.Get());
   41   EXPECT_EQ(0x2U, f.Get());
   44   EXPECT_EQ(0x0U, f.Get());
tools/lldb/unittests/Utility/LogTest.cpp
  306   std::thread log_thread([this, &mask] { mask = getLog()->GetMask().Get(); });