Lines Matching refs:InfoStreamBuilder
1 //===- InfoStreamBuilder.cpp - PDB Info Stream Creation ---------*- C++ -*-===//
9 #include "llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h"
24 InfoStreamBuilder::InfoStreamBuilder(msf::MSFBuilder &Msf,
31 void InfoStreamBuilder::setVersion(PdbRaw_ImplVer V) { Ver = V; }
33 void InfoStreamBuilder::addFeature(PdbRaw_FeatureSig Sig) {
37 void InfoStreamBuilder::setHashPDBContentsToGUID(bool B) {
41 void InfoStreamBuilder::setAge(uint32_t A) { Age = A; }
43 void InfoStreamBuilder::setSignature(uint32_t S) { Signature = S; }
45 void InfoStreamBuilder::setGuid(GUID G) { Guid = G; }
48 Error InfoStreamBuilder::finalizeMsfLayout() {
57 Error InfoStreamBuilder::commit(const msf::MSFLayout &Layout,