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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  283   const char *GetCStr(lldb::offset_t *offset_ptr) const;

References

tools/lldb/source/API/SBData.cpp
  320     value = m_opaque_sp->GetCStr(&offset);
tools/lldb/source/Core/DumpDataExtractor.cpp
  419       const char *cstr = DE.GetCStr(&offset);
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1203           cstr = data.GetCStr(&offset);
 1242   llvm::StringRef VendorName = data.GetCStr(&Offset);
 1267           data.GetCStr(&Offset);
 1273         data.GetCStr(&Offset);
 1486             gnu_debuglink_file = data.GetCStr(&gnu_debuglink_offset);
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1949       import_name = data.GetCStr(&offset);
 1983     const char *cstr = data.GetCStr(&children_offset);
tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
  619     if (const char *name = m_data.GetCStr(&string_file_offset))
tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  834         const char *path = note.data.GetCStr(&offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
  100             data.GetCStr(&offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
   76       macro_str = debug_macro_data.GetCStr(offset);
   91       macro_str = debug_str_data.GetCStr(&str_offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   71       m_value.value.cstr = data.GetCStr(offset_ptr);
  238     debug_info_data.GetCStr(offset_ptr);
tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp
  923       const char *queue_label = extractor.GetCStr(&offset);
  969   item.enqueuing_thread_label = extractor.GetCStr(&offset);
  970   item.enqueuing_queue_label = extractor.GetCStr(&offset);
  971   item.target_queue_label = extractor.GetCStr(&offset);
tools/lldb/unittests/Utility/DataExtractorTest.cpp
   57   EXPECT_STREQ("foo", E.GetCStr(&offset));
   66   EXPECT_STREQ("", E.GetCStr(&offset));
   75   EXPECT_EQ(nullptr, E.GetCStr(&offset));
   84   EXPECT_EQ(nullptr, E.GetCStr(&offset));
   93   EXPECT_STREQ("foo", E.GetCStr(&offset));