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

/freebsd-13-stable/contrib/llvm-project/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp31 int InFD; local
35 InFDStream >> InFD; local
56 FDRawChannel Channel(InFD, OutFD);
63 close(InFD);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/lli/
H A DRemoteJITUtils.h29 FDRawChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} argument
35 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed);
70 int InFD, OutFD; member in class:final
/freebsd-13-stable/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

Completed in 113 milliseconds