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) {
  604     llvm::StringRef name = note.info.n_name;
  607       if (note.info.n_type == NETBSD::NT_PROCINFO) {
  613       } else if (note.info.n_type == NETBSD::NT_AUXV) {
  627         if (note.info.n_type == NETBSD::AARCH64::NT_REGS) {
  642         } else if (note.info.n_type == NETBSD::AARCH64::NT_FPREGS) {
  653         if (note.info.n_type == NETBSD::AMD64::NT_REGS) {
  668         } else if (note.info.n_type == NETBSD::AMD64::NT_FPREGS) {
  731     if (!llvm::StringRef(note.info.n_name).startswith("OpenBSD"))
  734     switch (note.info.n_type) {
  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) {
tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
   36       Notes, [Type](const CoreNote &Note) { return Note.info.n_type == Type; });