HomeSort by: relevance | last modified time | path
    Searched refs:SectionWriter (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
PDBStringTableBuilder.cpp 209 BinaryStreamWriter SectionWriter;
211 std::tie(SectionWriter, Writer) = Writer.split(sizeof(PDBStringTableHeader));
212 if (auto EC = writeHeader(SectionWriter))
215 std::tie(SectionWriter, Writer) =
217 if (auto EC = writeStrings(SectionWriter))
220 std::tie(SectionWriter, Writer) = Writer.split(calculateHashTableSize());
221 if (auto EC = writeHashTable(SectionWriter))
224 std::tie(SectionWriter, Writer) = Writer.split(sizeof(uint32_t));
225 if (auto EC = writeEpilogue(SectionWriter))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h 107 class SectionWriter : public SectionVisitor {
112 virtual ~SectionWriter() = default;
126 explicit SectionWriter(WritableMemoryBuffer &Buf) : Out(Buf) {}
129 template <class ELFT> class ELFSectionWriter : public SectionWriter {
146 explicit ELFSectionWriter(WritableMemoryBuffer &Buf) : SectionWriter(Buf) {}
172 friend class SectionWriter; \
178 class BinarySectionWriter : public SectionWriter {
191 : SectionWriter(Buf) {}
Object.cpp 172 Error SectionWriter::visit(const Section &Sec) {
434 Error SectionWriter::visit(const OwnedDataSection &Sec) {
627 Error SectionWriter::visit(const StringTableSection &Sec) {
1024 Error SectionWriter::visit(const DynamicRelocationSection &Sec) {

Completed in 23 milliseconds