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
  526     if (note.info.n_name != "FreeBSD")
  529     if ((note.info.n_type == ELF::NT_PRSTATUS && have_prstatus) ||
  530         (note.info.n_type == ELF::NT_PRPSINFO && have_prpsinfo)) {
  539     switch (note.info.n_type) {
  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);
  557       thread_data.notes.push_back(note);