Lines Matching refs:make_unique
76 auto Stream = std::make_unique<MemoryBufferByteStream>( in createFromPdb()
79 auto Allocator = std::make_unique<BumpPtrAllocator>(); in createFromPdb()
80 auto File = std::make_unique<PDBFile>(Path, std::move(Stream), *Allocator); in createFromPdb()
87 std::make_unique<NativeSession>(std::move(File), std::move(Allocator)); in createFromPdb()
107 auto Stream = std::make_unique<MemoryBufferByteStream>( in loadPdbFile()
110 auto File = std::make_unique<PDBFile>(PdbPath, std::move(Stream), *Allocator); in loadPdbFile()
122 auto Allocator = std::make_unique<BumpPtrAllocator>(); in createFromPdbPath()
127 Session = std::make_unique<NativeSession>(std::move(PdbFile.get()), in createFromPdbPath()
162 auto Allocator = std::make_unique<BumpPtrAllocator>(); in createFromExe()
167 Session = std::make_unique<NativeSession>(std::move(File.get()), in createFromExe()
189 auto Allocator = std::make_unique<BumpPtrAllocator>(); in searchForPdb()
358 return std::make_unique<NativeEnumInjectedSources>(*Pdb, *ISS, *Strings); in getInjectedSources()