Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DReplaceFileTest.cpp36 const bool ShouldClose = true; in CreateFileWithContent() local
37 raw_fd_ostream OS(FD, ShouldClose); in CreateFileWithContent()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DBitWriter.h40 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose,
/llvm-project-15.0.7/llvm/lib/Support/
H A Draw_ostream.cpp620 : raw_pwrite_stream(unbuffered, K), FD(fd), ShouldClose(shouldClose) { in raw_fd_ostream()
622 ShouldClose = false; in raw_fd_ostream()
635 ShouldClose = false; in raw_fd_ostream()
663 if (ShouldClose) { in ~raw_fd_ostream()
794 assert(ShouldClose); in close()
795 ShouldClose = false; in close()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A Draw_ostream.h446 bool ShouldClose; variable