Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/
H A DSimpleRemoteEPCUtils.cpp50 FDSimpleRemoteEPCTransport::Create(SimpleRemoteEPCTransportClient &C, int InFD, in Create() argument
53 if (InFD == -1) in Create()
55 Twine(InFD), in Create()
62 new FDSimpleRemoteEPCTransport(C, InFD, OutFD)); in Create()
116 bool CloseOutFD = InFD != OutFD; in disconnect()
119 while (close(InFD) == -1) { in disconnect()
143 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed); in readBytes()
/freebsd/contrib/llvm-project/llvm/tools/lli/ChildTarget/
H A DChildTarget.cpp44 int InFD = 0; in main()
48 InFDStream >> InFD; in main()
63 InFD, OutFD)); in main()
45 int InFD = 0; main() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimpleRemoteEPCUtils.h108 Create(SimpleRemoteEPCTransportClient &C, int InFD, int OutFD);
127 FDSimpleRemoteEPCTransport(SimpleRemoteEPCTransportClient &C, int InFD, in FDSimpleRemoteEPCTransport() argument
129 : C(C), InFD(InFD), OutFD(OutFD) {} in FDSimpleRemoteEPCTransport()
138 int InFD, OutFD; variable
/freebsd/contrib/llvm-project/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