Lines Matching refs:DLC
901 MachO::dysymtab_command DLC = Obj->getDysymtabLoadCommand();
903 W.printNumber("ilocalsym", DLC.ilocalsym);
904 W.printNumber("nlocalsym", DLC.nlocalsym);
905 W.printNumber("iextdefsym", DLC.iextdefsym);
906 W.printNumber("nextdefsym", DLC.nextdefsym);
907 W.printNumber("iundefsym", DLC.iundefsym);
908 W.printNumber("nundefsym", DLC.nundefsym);
909 W.printNumber("tocoff", DLC.tocoff);
910 W.printNumber("ntoc", DLC.ntoc);
911 W.printNumber("modtaboff", DLC.modtaboff);
912 W.printNumber("nmodtab", DLC.nmodtab);
913 W.printNumber("extrefsymoff", DLC.extrefsymoff);
914 W.printNumber("nextrefsyms", DLC.nextrefsyms);
915 W.printNumber("indirectsymoff", DLC.indirectsymoff);
916 W.printNumber("nindirectsyms", DLC.nindirectsyms);
917 W.printNumber("extreloff", DLC.extreloff);
918 W.printNumber("nextrel", DLC.nextrel);
919 W.printNumber("locreloff", DLC.locreloff);
920 W.printNumber("nlocrel", DLC.nlocrel);
949 MachO::dysymtab_command DLC = Obj->getDysymtabLoadCommand();
951 W.printNumber("Number", DLC.nindirectsyms);
953 for (unsigned i = 0; i < DLC.nindirectsyms; ++i) {
956 W.printHex("Symbol Index", Obj->getIndirectSymbolTableEntry(DLC, i));