HomeSort by relevance Sort by last modified time
    Searched defs:FileOutputBuffer (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Support/
FileOutputBuffer.cpp 1 //===- FileOutputBuffer.cpp - File Output Buffer ----------------*- C++ -*-===//
14 #include "llvm/Support/FileOutputBuffer.h"
23 FileOutputBuffer::FileOutputBuffer(mapped_file_region * R,
30 FileOutputBuffer::~FileOutputBuffer() {
35 error_code FileOutputBuffer::create(StringRef FilePath,
37 OwningPtr<FileOutputBuffer> &Result,
83 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
90 error_code FileOutputBuffer::commit(int64_t NewSmallerSize)
    [all...]
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 1 //=== FileOutputBuffer.h - File Output Buffer -------------------*- C++ -*-===//
26 /// FileOutputBuffer - This interface provides simple way to create an in-memory
30 /// If the FileOutputBuffer is committed, the target file's content will become
31 /// the buffer content at the time of the commit. If the FileOutputBuffer is
32 /// not committed, the file will be deleted in the FileOutputBuffer destructor.
33 class FileOutputBuffer {
44 OwningPtr<FileOutputBuffer> &Result,
77 ~FileOutputBuffer();
80 FileOutputBuffer(const FileOutputBuffer &) LLVM_DELETED_FUNCTION
    [all...]

Completed in 425 milliseconds