Home
last modified time | relevance | path

Searched refs:RPCChannel (Results 1 – 5 of 5) sorted by relevance

/external/llvm/tools/lli/Windows/
DRPCChannel.inc1 //=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=//
10 // Implementation of the Windows-specific parts of the RPCChannel class
17 bool RPCChannel::createServer() { return false; }
19 bool RPCChannel::createClient() { return false; }
21 bool RPCChannel::WriteBytes(const void *Data, size_t Size) { return false; }
23 bool RPCChannel::ReadBytes(void *Data, size_t Size) { return false; }
25 void RPCChannel::Wait() {}
27 RPCChannel::~RPCChannel() {}
/external/llvm/tools/lli/Unix/
DRPCChannel.inc1 //=- RPCChannel.inc - LLVM out-of-process JIT execution for Unix --=//
10 // Implementation of the Unix-specific parts of the RPCChannel class
35 bool RPCChannel::createServer() {
81 bool RPCChannel::createClient() {
87 void RPCChannel::Wait() { wait(nullptr); }
108 bool RPCChannel::WriteBytes(const void *Data, size_t Size) {
113 bool RPCChannel::ReadBytes(void *Data, size_t Size) {
118 RPCChannel::~RPCChannel() {
/external/llvm/tools/lli/
DRPCChannel.h23 class RPCChannel {
27 RPCChannel() {} in RPCChannel() function
28 ~RPCChannel();
DRemoteTargetExternal.h32 RPCChannel RPC;
/external/llvm/tools/lli/ChildTarget/
DChildTarget.cpp20 RPCChannel RPC;