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

  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
BitWriter.h 40 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitWriter.cpp 31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
raw_ostream.cpp 617 /// FD is the file descriptor that this writes to. If ShouldClose is true, this
619 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered,
621 : raw_pwrite_stream(unbuffered, K), FD(fd), ShouldClose(shouldClose) {
623 ShouldClose = false;
636 ShouldClose = false;
663 if (ShouldClose) {
793 assert(ShouldClose);
794 ShouldClose = false;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
raw_ostream.h 434 bool ShouldClose;
492 /// FD is the file descriptor that this writes to. If ShouldClose is true,
495 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered = false,

Completed in 33 milliseconds