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

  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 18 class raw_fd_ostream : public llvm::raw_fd_ostream { class in namespace:mcld
20 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
30 raw_fd_ostream(const char* pFilename,
34 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
36 raw_fd_ostream(int pFD, bool pShouldClose, bool pUnbuffered = false);
38 virtual ~raw_fd_ostream();
59 mcld::raw_fd_ostream& outs();
63 mcld::raw_fd_ostream& errs();
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 37 raw_fd_ostream::raw_fd_ostream(const char* pFilename, function in class:mcld::raw_fd_ostream
40 : llvm::raw_fd_ostream(pFilename, pErrorCode, pFlags),
45 raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
48 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
53 raw_fd_ostream::~raw_fd_ostream() {
56 void raw_fd_ostream::setColor(bool pEnable) {
61 llvm::raw_ostream& raw_fd_ostream::changeColor
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 487 // raw_fd_ostream
512 raw_fd_ostream::raw_fd_ostream(StringRef Filename, std::error_code &EC, function in class:raw_fd_ostream
514 : raw_fd_ostream(getFD(Filename, EC, Flags), true) {}
518 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
542 raw_fd_ostream::~raw_fd_ostream() {
566 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
602 void raw_fd_ostream::close()
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 344 class raw_fd_ostream : public raw_pwrite_stream { class in namespace:llvm
382 raw_fd_ostream(StringRef Filename, std::error_code &EC,
387 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
389 ~raw_fd_ostream() override;
411 /// Return the value of the flag in this raw_fd_ostream indicating whether an

Completed in 79 milliseconds