Searched defs:FileOutputBuffer (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp1 //===- FileOutputBuffer.cpp - File Output Buffer ----------------*- C++ -*-===//
15 #include "llvm/Support/FileOutputBuffer.h"
23 FileOutputBuffer::FileOutputBuffer(mapped_file_region * R, function in class:llvm::FileOutputBuffer
30 FileOutputBuffer::~FileOutputBuffer() {
35 FileOutputBuffer::create(StringRef FilePath, size_t Size,
36 std::unique_ptr<FileOutputBuffer> &Result,
81 Result.reset(new FileOutputBuffer(MappedFile.get(), FilePath, TempFilePath));
88 std::error_code FileOutputBuffer
[all...]
/external/llvm/include/llvm/Support/
H A DFileOutputBuffer.h1 //=== FileOutputBuffer.h - File Output Buffer -------------------*- C++ -*-===//
23 /// FileOutputBuffer - This interface provides simple way to create an in-memory
27 /// If the FileOutputBuffer is committed, the target file's content will become
28 /// the buffer content at the time of the commit. If the FileOutputBuffer is
29 /// not committed, the file will be deleted in the FileOutputBuffer destructor.
30 class FileOutputBuffer { class in namespace:llvm
41 std::unique_ptr<FileOutputBuffer> &Result,
74 ~FileOutputBuffer();
77 FileOutputBuffer(const FileOutputBuffer
[all...]

Completed in 111 milliseconds