Lines Matching refs:Obj

41     : File(File), Out(outs()), Obj(File.getAllocator()) {  in YAMLOutputStyle()
86 Obj.Headers.emplace(); in dumpFileHeaders()
87 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
88 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
91 Obj.Headers->DirectoryBlocks.assign(Blocks.begin(), Blocks.end()); in dumpFileHeaders()
92 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
93 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
94 Obj.Headers->NumStreams = in dumpFileHeaders()
96 Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock(); in dumpFileHeaders()
97 Obj.Headers->SuperBlock.Unknown1 = File.getUnknown1(); in dumpFileHeaders()
98 Obj.Headers->FileSize = File.getFileSize(); in dumpFileHeaders()
114 Obj.StringTable.emplace(); in dumpStringTable()
122 Obj.StringTable->push_back(*S); in dumpStringTable()
131 Obj.StreamSizes.emplace(); in dumpStreamMetadata()
132 Obj.StreamSizes->assign(File.getStreamSizes().begin(), in dumpStreamMetadata()
142 Obj.StreamMap.emplace(); in dumpStreamDirectory()
146 Obj.StreamMap->push_back(BlockList); in dumpStreamDirectory()
161 Obj.PdbStream.emplace(); in dumpPDBStream()
162 Obj.PdbStream->Age = InfoS.getAge(); in dumpPDBStream()
163 Obj.PdbStream->Guid = InfoS.getGuid(); in dumpPDBStream()
164 Obj.PdbStream->Signature = InfoS.getSignature(); in dumpPDBStream()
165 Obj.PdbStream->Version = InfoS.getVersion(); in dumpPDBStream()
166 Obj.PdbStream->Features = InfoS.getFeatureSignatures(); in dumpPDBStream()
207 Obj.DbiStream.emplace(); in dumpDbiStream()
208 Obj.DbiStream->Age = DS.getAge(); in dumpDbiStream()
209 Obj.DbiStream->BuildNumber = DS.getBuildNumber(); in dumpDbiStream()
210 Obj.DbiStream->Flags = DS.getFlags(); in dumpDbiStream()
211 Obj.DbiStream->MachineType = DS.getMachineType(); in dumpDbiStream()
212 Obj.DbiStream->PdbDllRbld = DS.getPdbDllRbld(); in dumpDbiStream()
213 Obj.DbiStream->PdbDllVersion = DS.getPdbDllVersion(); in dumpDbiStream()
214 Obj.DbiStream->VerHeader = DS.getDbiVersion(); in dumpDbiStream()
220 Obj.DbiStream->ModInfos.emplace_back(); in dumpDbiStream()
221 yaml::PdbDbiModuleInfo &DMI = Obj.DbiStream->ModInfos.back(); in dumpDbiStream()
224 DMI.Obj = MI.getObjFileName(); in dumpDbiStream()
291 Obj.TpiStream.emplace(); in dumpTpiStream()
292 Obj.TpiStream->Version = TS.getTpiVersion(); in dumpTpiStream()
297 Obj.TpiStream->Records.push_back(*ExpectedRecord); in dumpTpiStream()
318 Obj.IpiStream.emplace(); in dumpIpiStream()
319 Obj.IpiStream->Version = IS.getTpiVersion(); in dumpIpiStream()
325 Obj.IpiStream->Records.push_back(*ExpectedRecord); in dumpIpiStream()
335 Obj.PublicsStream.emplace(); in dumpPublics()
361 Obj.PublicsStream->PubSyms.push_back(*ES); in dumpPublics()
368 Out << Obj; in flush()