Home
last modified time | relevance | path

Searched refs:ShouldClose (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD() argument
33 raw_fd_ostream OS(FD, ShouldClose, Unbuffered); in LLVMWriteBitcodeToFD()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DBitWriter.h41 LLVM_C_ABI int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp619 : raw_pwrite_stream(unbuffered, K), FD(fd), ShouldClose(shouldClose) { in raw_fd_ostream()
621 ShouldClose = false; in raw_fd_ostream()
634 ShouldClose = false; in raw_fd_ostream()
662 if (ShouldClose) { in ~raw_fd_ostream()
804 assert(ShouldClose); in close()
805 ShouldClose = false; in close()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h463 bool ShouldClose; variable