Home
last modified time | relevance | path

Searched refs:TarWriter (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp169 Expected<std::unique_ptr<TarWriter>> TarWriter::create(StringRef OutputPath, in create()
176 return std::unique_ptr<TarWriter>(new TarWriter(FD, BaseDir)); in create()
179 TarWriter::TarWriter(int FD, StringRef BaseDir) in TarWriter() function in TarWriter
184 void TarWriter::append(StringRef Path, StringRef Data) { in append()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DTarWriter.h18 class TarWriter {
20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
26 TarWriter(int FD, StringRef BaseDir);
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputFiles.h25 class TarWriter; variable
43 extern std::unique_ptr<llvm::TarWriter> tar;
H A DDriver.cpp640 Expected<std::unique_ptr<TarWriter>> errOrWriter = in linkerMain()
641 TarWriter::create(path, path::stem(path)); in linkerMain()
H A DInputFiles.cpp55 std::unique_ptr<TarWriter> elf::tar;
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputFiles.h37 class TarWriter; variable
53 extern std::unique_ptr<llvm::TarWriter> tar;
H A DDriver.cpp1606 Expected<std::unique_ptr<TarWriter>> errOrWriter = in link()
1607 TarWriter::create(path, path::stem(path)); in link()
H A DInputFiles.cpp106 std::unique_ptr<TarWriter> macho::tar;
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriver.h23 #include "llvm/Support/TarWriter.h"
102 std::unique_ptr<llvm::TarWriter> tar; // for /linkrepro
H A DDriver.cpp1520 Expected<std::unique_ptr<TarWriter>> errOrWriter = in linkerMain()
1521 TarWriter::create(*path, sys::path::stem(*path)); in linkerMain()
/freebsd/lib/clang/libllvm/
H A DMakefile1202 SRCS_LLD+= Support/TarWriter.cpp