Home
last modified time | relevance | path

Searched refs:OutFileOrError (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/llvm/lib/DebugInfo/MSF/
DMSFBuilder.cpp347 auto OutFileOrError = FileOutputBuffer::create(Path, FileSize); in commit() local
348 if (auto EC = OutFileOrError.takeError()) in commit()
351 FileBufferByteStream Buffer(std::move(*OutFileOrError), in commit()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/
DMSFBuilder.cpp347 auto OutFileOrError = FileOutputBuffer::create(Path, FileSize); in commit() local
348 if (auto EC = OutFileOrError.takeError()) in commit()
351 FileBufferByteStream Buffer(std::move(*OutFileOrError), in commit()
/external/llvm-project/llvm/tools/llvm-lipo/
Dllvm-lipo.cpp500 Expected<std::unique_ptr<FileOutputBuffer>> OutFileOrError = in thinSlice() local
506 if (!OutFileOrError) in thinSlice()
507 reportError(OutputFileName, OutFileOrError.takeError()); in thinSlice()
510 OutFileOrError.get()->getBufferStart()); in thinSlice()
511 if (Error E = OutFileOrError.get()->commit()) in thinSlice()
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp317 auto OutFileOrError = FileOutputBuffer::create( in yamlToPdb() local
319 if (OutFileOrError.getError()) in yamlToPdb()
324 llvm::make_unique<FileBufferByteStream>(std::move(*OutFileOrError)); in yamlToPdb()