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
  776     if (note.info.n_name != "CORE" && note.info.n_name != "LINUX")
  776     if (note.info.n_name != "CORE" && note.info.n_name != "LINUX")
  779     if ((note.info.n_type == ELF::NT_PRSTATUS && have_prstatus) ||
  780         (note.info.n_type == ELF::NT_PRPSINFO && have_prpsinfo)) {
  789     switch (note.info.n_type) {
  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;
  844       thread_data.notes.push_back(note);