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 449 ShouldClose = true;
458 ShouldClose = false;
463 ShouldClose = true;
467 /// ShouldClose is true, this closes the file when the stream is destroyed.
468 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
470 ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) {
490 if (ShouldClose)
566 assert(ShouldClose);
567 ShouldClose = false
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 317 bool ShouldClose;
358 /// ShouldClose is true, this closes the file when the stream is destroyed.
359 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);

Completed in 137 milliseconds