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

/freebsd-11.0-release/contrib/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp27 int InFD; local
31 InFDStream >> InFD; local
44 FDRPCChannel Channel(InFD, OutFD);
65 close(InFD);
/freebsd-11.0-release/contrib/llvm/tools/lli/
H A DRemoteJITUtils.h29 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} argument
33 ssize_t ReadResult = ::read(InFD, Dst, Size);
50 int InFD, OutFD; member in class:FDRPCChannel
/freebsd-11.0-release/contrib/llvm/lib/Support/Unix/
H A DProgram.inc110 int InFD = open(File.c_str(), FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666);
111 if (InFD == -1) {
118 if (dup2(InFD, FD) == -1) {
120 close(InFD);
123 close(InFD); // Close the original FD

Completed in 173 milliseconds