Home
last modified time | relevance | path

Searched refs:InFD (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DFDRawByteChannel.h31 FDRawByteChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRawByteChannel() argument
37 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed); in readBytes()
72 int InFD, OutFD;
/freebsd-13.1/contrib/llvm-project/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp32 int InFD; in main() local
36 InFDStream >> InFD; in main()
57 shared::FDRawByteChannel Channel(InFD, OutFD); in main()
65 close(InFD); in main()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc107 int InFD = open(File.c_str(), FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666);
108 if (InFD == -1) {
115 if (dup2(InFD, FD) == -1) {
117 close(InFD);
120 close(InFD); // Close the original FD