Lines Matching defs:Obj
21 const object::COFFObjectFile &Obj;
28 COFFDumper(const object::COFFObjectFile &Obj);
39 COFFDumper::COFFDumper(const object::COFFObjectFile &Obj) : Obj(Obj) {
41 check(Obj.getCOFFHeader(Header));
55 for (object::section_iterator iter = Obj.begin_sections();
56 iter != Obj.end_sections(); iter.increment(ec)) {
58 const object::coff_section *Sect = Obj.getCOFFSection(iter);
66 Obj.getSectionContents(Sect, sectionData);
72 const object::coff_relocation *reloc = Obj.getCOFFRelocation(rIter);
89 for (object::symbol_iterator iter = Obj.begin_symbols();
90 iter != Obj.end_symbols(); iter.increment(ec)) {
92 const object::coff_symbol *Symbol = Obj.getCOFFSymbol(iter);
94 Obj.getSymbolName(Symbol, Sym.Name);
101 Sym.AuxiliaryData = object::yaml::BinaryRef(Obj.getSymbolAuxData(Symbol));
112 object::COFFObjectFile Obj(Buff, ec);
114 COFFDumper Dumper(Obj);