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

References

lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
  220       Type = NL64.n_type;
lib/Object/MachOObjectFile.cpp
 1694       NType = STE_64.n_type;
lib/ObjectYAML/MachOEmitter.cpp
  377   ListEntry.n_type = NLE.n_type;
tools/dsymutil/MachODebugMapParser.cpp
   83     handleStabSymbolTableEntry(STE.n_strx, STE.n_type, STE.n_sect, STE.n_desc,
   99     dumpSymTabEntry(OS, Index, STE.n_strx, STE.n_type, STE.n_sect, STE.n_desc,
tools/dsymutil/MachOUtils.cpp
  163   if ((NList.n_type & MachO::N_TYPE) == MachO::N_UNDF)
  169         (NList.n_type != MachO::N_SO) || (!Name.empty() && Name[0] != '\0');
  171   } else if (NList.n_type == MachO::N_SO) {
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
  394           sout.type = static_cast<NListType>(sin->n_type & (N_STAB|N_TYPE));
  395           sout.scope = (sin->n_type & (N_PEXT|N_EXT));
  399           if (sin->n_type & N_STAB)
  403           else if (sin->n_type & N_EXT)
tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
 1053       nb->n_type = sym.type | sym.scope;
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 2036   nlist.n_type = nlist_data.GetU8_unchecked(&nlist_data_offset);
 3678       const bool is_debug = ((nlist.n_type & N_STAB) != 0);
 3720         switch (nlist.n_type) {
 4069         uint8_t n_type = N_TYPE & nlist.n_type;
 4070         sym[sym_idx].SetExternal((N_EXT & nlist.n_type) != 0);
 4368                 sym[pos->second].SetFlags(nlist.n_type << 16 | nlist.n_desc);
 4404                 sym[pos->second].SetFlags(nlist.n_type << 16 | nlist.n_desc);
 4429                 sym[GSYM_sym_idx].SetFlags(nlist.n_type << 16 | nlist.n_desc);
 4444       sym[sym_idx].SetFlags(nlist.n_type << 16 | nlist.n_desc);
tools/llvm-nm/llvm-nm.cpp
  398         NType = STE_64.n_type;
  671     NType = STE_64.n_type;
 1003   uint8_t NType = Obj.is64Bit() ? Obj.getSymbol64TableEntry(Symb).n_type
 1178     return (STE.n_type & MachO::N_TYPE) == MachO::N_SECT ? STE.n_sect : 0;
tools/llvm-objcopy/MachO/MachOReader.cpp
  182   SE.n_type = nlist.n_type;
tools/llvm-objcopy/MachO/MachOWriter.cpp
  262   ListEntry.n_type = SE.n_type;
tools/llvm-readobj/MachODumper.cpp
  406   Symbol.Type         = Entry.n_type;
tools/obj2yaml/macho2yaml.cpp
  471   NL.n_type = nlist.n_type;