Home | History | Annotate | Download | only in macho-dump

Lines Matching refs:DLC

226   MachO::dysymtab_command DLC = Obj.getDysymtabLoadCommand();
228 outs() << " ('ilocalsym', " << DLC.ilocalsym << ")\n";
229 outs() << " ('nlocalsym', " << DLC.nlocalsym << ")\n";
230 outs() << " ('iextdefsym', " << DLC.iextdefsym << ")\n";
231 outs() << " ('nextdefsym', " << DLC.nextdefsym << ")\n";
232 outs() << " ('iundefsym', " << DLC.iundefsym << ")\n";
233 outs() << " ('nundefsym', " << DLC.nundefsym << ")\n";
234 outs() << " ('tocoff', " << DLC.tocoff << ")\n";
235 outs() << " ('ntoc', " << DLC.ntoc << ")\n";
236 outs() << " ('modtaboff', " << DLC.modtaboff << ")\n";
237 outs() << " ('nmodtab', " << DLC.nmodtab << ")\n";
238 outs() << " ('extrefsymoff', " << DLC.extrefsymoff << ")\n";
239 outs() << " ('nextrefsyms', " << DLC.nextrefsyms << ")\n";
240 outs() << " ('indirectsymoff', " << DLC.indirectsymoff << ")\n";
241 outs() << " ('nindirectsyms', " << DLC.nindirectsyms << ")\n";
242 outs() << " ('extreloff', " << DLC.extreloff << ")\n";
243 outs() << " ('nextrel', " << DLC.nextrel << ")\n";
244 outs() << " ('locreloff', " << DLC.locreloff << ")\n";
245 outs() << " ('nlocrel', " << DLC.nlocrel << ")\n";
249 for (unsigned i = 0; i != DLC.nindirectsyms; ++i) {
250 uint32_t ISTE = Obj.getIndirectSymbolTableEntry(DLC, i);