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

References

tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
  542       ParseFreeBSDPrStatus(thread_data, note.data, GetArchitecture());
  549       thread_data.name = note.data.GetCStr(&offset, 20);
  554       m_auxv = DataExtractor(note.data, 4, note.data.GetByteSize() - 4);
  554       m_auxv = DataExtractor(note.data, 4, note.data.GetByteSize() - 4);
  608         llvm::Error error = ParseNetBSDProcInfo(note.data, nlwps, signo,
  614         m_auxv = note.data;
  635           thread_data.gpregset = note.data;
  661           thread_data.gpregset = note.data;
  736       ParseOpenBSDProcInfo(thread_data, note.data);
  739       m_auxv = note.data;
  742       thread_data.gpregset = note.data;
  793       Status status = prstatus.Parse(note.data, arch);
  799       size_t len = note.data.GetByteSize() - header_size;
  800       thread_data.gpregset = DataExtractor(note.data, header_size, len);
  806       Status status = prpsinfo.Parse(note.data, arch);
  815       Status status = siginfo.Parse(note.data, arch);
  824       const uint64_t count = note.data.GetAddress(&offset);
  825       note.data.GetAddress(&offset); // Skip page size
  828         entry.start = note.data.GetAddress(&offset);
  829         entry.end = note.data.GetAddress(&offset);
  830         entry.file_ofs = note.data.GetAddress(&offset);
  834         const char *path = note.data.GetCStr(&offset);
  841       m_auxv = note.data;
tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
   37   return Iter == Notes.end() ? DataExtractor() : Iter->data;