Searched refs:FDRPCChannel (Results 1 – 7 of 7) sorted by relevance
/external/llvm/tools/lli/ChildTarget/ |
D | ChildTarget.cpp | 56 FDRPCChannel Channel(InFD, OutFD); in main() 57 typedef remote::OrcRemoteTargetServer<FDRPCChannel, HostOrcArch> JITServer; in main()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | RemoteJITUtils.h | 28 class FDRPCChannel final : public llvm::orc::remote::RPCChannel { 30 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRPCChannel() function
|
D | KaleidoscopeJIT.h | 68 typedef remote::OrcRemoteTargetClient<FDRPCChannel> MyRemote;
|
D | toy.cpp | 1222 std::unique_ptr<FDRPCChannel> connect() { in connect() 1242 return llvm::make_unique<FDRPCChannel>(sockfd, sockfd); in connect()
|
/external/llvm/tools/lli/ |
D | RemoteJITUtils.h | 28 class FDRPCChannel final : public llvm::orc::remote::RPCChannel { 30 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRPCChannel() function 75 std::unique_ptr<FDRPCChannel> launchRemote();
|
D | lli.cpp | 648 std::unique_ptr<FDRPCChannel> C = launchRemote(); in main() 701 std::unique_ptr<FDRPCChannel> launchRemote() { in launchRemote() 751 return llvm::make_unique<FDRPCChannel>(PipeFD[1][0], PipeFD[0][1]); in launchRemote()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/ |
D | server.cpp | 100 FDRPCChannel TCPChannel(newsockfd, newsockfd); in main() 101 typedef remote::OrcRemoteTargetServer<FDRPCChannel, OrcX86_64_SysV> MyServerT; in main()
|