Searched refs:TarWriter (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTarWriter.h1 //===-- llvm/Support/TarWriter.h - Tar archive file creator -----*- C++ -*-===//
18 class TarWriter { class in namespace:llvm
20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
26 TarWriter(int FD, StringRef BaseDir);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp1 //===-- TarWriter.cpp - Tar archive file creator --------------------------===//
9 // TarWriter class provides a feature to create a tar archive file.
24 #include "llvm/Support/TarWriter.h"
158 // Creates a TarWriter instance and returns it.
159 Expected<std::unique_ptr<TarWriter>> TarWriter::create(StringRef OutputPath,
166 return std::unique_ptr<TarWriter>(new TarWriter(FD, BaseDir));
169 TarWriter::TarWriter(in function in class:TarWriter
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DDriver.h24 #include "llvm/Support/TarWriter.h"
83 std::unique_ptr<llvm::TarWriter> tar; // for /linkrepro
H A DDriver.cpp44 #include "llvm/Support/TarWriter.h"
1166 Expected<std::unique_ptr<TarWriter>> errOrWriter =
1167 TarWriter::create(*path, sys::path::stem(*path));
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.h28 class TarWriter;
50 extern std::unique_ptr<llvm::TarWriter> tar;
H A DDriver.cpp57 #include "llvm/Support/TarWriter.h"
470 Expected<std::unique_ptr<TarWriter>> errOrWriter =
471 TarWriter::create(path, path::stem(path));
H A DInputFiles.cpp30 #include "llvm/Support/TarWriter.h"
64 std::unique_ptr<TarWriter> tar;
/freebsd-11-stable/lib/clang/libllvm/
H A DMakefile919 SRCS_LLD+= Support/TarWriter.cpp

Completed in 93 milliseconds