Home
last modified time | relevance | path

Searched refs:OutFile (Results 1 – 25 of 25) sorted by relevance

/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp132 std::function<Error(raw_ostream & OutFile)> ObjcopyFunc; in executeObjcopy()
146 ObjcopyFunc = [&](raw_ostream &OutFile) -> Error { in executeObjcopy() argument
149 OutFile); in executeObjcopy()
152 ObjcopyFunc = [&](raw_ostream &OutFile) -> Error { in executeObjcopy() argument
154 return executeObjcopyOnIHex(ConfigMgr, *MemoryBufferHolder, OutFile); in executeObjcopy()
169 ObjcopyFunc = [&](raw_ostream &OutFile) -> Error { in executeObjcopy() argument
171 OutFile); in executeObjcopy()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFEmitterImpl.h52 raw_pwrite_stream &OutFile) in DwarfEmitterImpl() argument
53 : OutFile(OutFile), OutFileType(OutFileType) {} in DwarfEmitterImpl()
122 raw_pwrite_stream &OutFile; variable
H A DDWARFEmitterImpl.cpp86 *MC, std::make_unique<formatted_raw_ostream>(OutFile), std::move(MIP), in init()
94 MAB->createObjectWriter(OutFile), std::unique_ptr<MCCodeEmitter>(MCE), in init()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp262 Config.Common.OutputFilename, [&](raw_ostream &OutFile) -> Error { in saveSeparateDebugInfo() argument
263 raw_crc_ostream CRCBuffer(OutFile); in saveSeparateDebugInfo()
287 Config.Common.OutputFilename, [&](raw_ostream &OutFile) -> Error { in saveNonDebugInfo() argument
289 objcopy::executeObjcopyOnBinary(Config, InputFile, OutFile)) in saveNonDebugInfo()
373 Config.Common.OutputFilename, [&](raw_ostream &OutFile) -> Error { in saveSeparateLinkedDebugInfo() argument
374 raw_crc_ostream CRCBuffer(OutFile); in saveSeparateLinkedDebugInfo()
401 Config.Common.OutputFilename, [&](raw_ostream &OutFile) -> Error { in saveSingleLinkedDebugInfo() argument
402 return objcopy::executeObjcopyOnBinary(Config, InputFile, OutFile); in saveSingleLinkedDebugInfo()
437 Config.Common.OutputFilename, [&](raw_ostream &OutFile) -> Error { in saveCopyOfFile() argument
438 return objcopy::executeObjcopyOnBinary(Config, InputFile, OutFile); in saveCopyOfFile()
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFStreamer.h48 raw_pwrite_stream &OutFile, in DwarfStreamer() argument
50 : OutFile(OutFile), OutFileType(OutFileType), WarningHandler(Warning) {} in DwarfStreamer()
55 raw_pwrite_stream &OutFile, DWARFLinkerBase::MessageHandlerTy Warning);
297 raw_pwrite_stream &OutFile; variable
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFLinkerImpl.cpp
H A DDWARFEmitterImpl.h
H A DDWARFEmitterImpl.cpp
H A DDWARFLinkerImpl.h
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp257 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_None); in llvm_dwp_main() local
262 if (OutFile.os().supportsSeeking()) { in llvm_dwp_main()
263 OS = &OutFile.os(); in llvm_dwp_main()
265 BOS.emplace(OutFile.os()); in llvm_dwp_main()
282 OutFile.keep(); in llvm_dwp_main()
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DMain.cpp180 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_Text); in TableGenMain() local
184 OutFile.os() << OutString; in TableGenMain()
186 OutFile.keep(); in TableGenMain()
/freebsd/contrib/libfido2/windows/
H A Dcygwin.ps152 -OutFile ${Cygwin}\${Setup}
56 -OutFile ${Cygwin}\${Setup}.sig
H A Dbuild.ps1122 -OutFile .\${LIBRESSL}.tar.gz
126 -OutFile .\${LIBRESSL}.tar.gz.asc
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.h122 std::string &OutFile,
177 std::string &OutFile, unsigned Timeout = 0,
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1367 SmallString<64> OutFile(opts::merge::PdbOutputFile); in mergePdbs() local
1368 if (OutFile.empty()) { in mergePdbs()
1369 OutFile = opts::merge::InputFilenames[0]; in mergePdbs()
1370 llvm::sys::path::replace_extension(OutFile, "merged.pdb"); in mergePdbs()
1374 ExitOnErr(Builder.commit(OutFile, &IgnoredOutGuid)); in mergePdbs()
1419 auto OutFile = ExitOnErr( in exportStream() local
1421 FileBufferByteStream DestStream(std::move(OutFile), llvm::endianness::little); in exportStream()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp35 raw_pwrite_stream &OutFile, DWARFLinkerBase::MessageHandlerTy Warning) { in createStreamer() argument
37 std::make_unique<DwarfStreamer>(FileType, OutFile, Warning); in createStreamer()
106 *MC, std::make_unique<formatted_raw_ostream>(OutFile), std::move(MIP), in init()
114 MAB->createObjectWriter(OutFile), std::unique_ptr<MCCodeEmitter>(MCE), in init()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DCommonArgs.h77 const InputInfo &Output, const char *OutFile);
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp
H A DDWARFLinker.cpp
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp75 std::unique_ptr<raw_ostream> OutFile; member in __anonb8493dda0111::RewriteObjC
579 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(std::move(OS)), in RewriteObjC()
4903 *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end()); in HandleTranslationUnit()
4914 *OutFile << ResultStr; in HandleTranslationUnit()
4916 OutFile->flush(); in HandleTranslationUnit()
H A DRewriteModernObjC.cpp77 std::unique_ptr<raw_ostream> OutFile; member in __anonc09f721f0111::RewriteModernObjC
646 : Diags(D), LangOpts(LOpts), InFileName(inFile), OutFile(std::move(OS)), in RewriteModernObjC()
5827 *OutFile << std::string(RewriteBuf->begin(), RewriteBuf->end()); in HandleTranslationUnit()
5838 *OutFile << ResultStr; in HandleTranslationUnit()
5844 *OutFile << ResultStr; in HandleTranslationUnit()
5846 OutFile->flush(); in HandleTranslationUnit()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp1831 const InputInfo &Output, const char *OutFile) { in SplitDebugInfo() argument
1841 ExtractArgs.push_back(OutFile); in SplitDebugInfo()