Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
H A DRemoteJITUtils.h40 class TCPSocketJITLinkExecutor; variable
57 static Expected<std::unique_ptr<TCPSocketJITLinkExecutor>>
101 class TCPSocketJITLinkExecutor : public JITLinkExecutor {
103 TCPSocketJITLinkExecutor(std::unique_ptr<RemoteTargetProcessControl> TPC);
H A DRemoteJITUtils.cpp175 TCPSocketJITLinkExecutor::TCPSocketJITLinkExecutor( in TCPSocketJITLinkExecutor() function in TCPSocketJITLinkExecutor
190 Expected<std::unique_ptr<TCPSocketJITLinkExecutor>>
306 Expected<std::unique_ptr<TCPSocketJITLinkExecutor>>
343 return std::unique_ptr<TCPSocketJITLinkExecutor>( in ConnectTCPSocket()
344 new TCPSocketJITLinkExecutor(std::move(TPC))); in ConnectTCPSocket()
H A DLLJITWithRemoteDebugging.cpp140 std::unique_ptr<TCPSocketJITLinkExecutor> Exec = in connectExecutor()