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

  /external/llvm/include/llvm-c/
BitWriter.h 41 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /external/llvm/lib/Support/
raw_ostream.cpp 516 /// FD is the file descriptor that this writes to. If ShouldClose is true, this
518 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
519 : raw_pwrite_stream(unbuffered), FD(fd), ShouldClose(shouldClose),
522 ShouldClose = false;
545 if (ShouldClose && sys::Process::SafelyCloseFileDescriptor(FD))
617 assert(ShouldClose);
618 ShouldClose = false;
  /external/llvm/include/llvm/Support/
raw_ostream.h 334 bool ShouldClose;
375 /// FD is the file descriptor that this writes to. If ShouldClose is true,
377 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);

Completed in 68 milliseconds