Searched refs:RPCChannel (Results 1 – 5 of 5) sorted by relevance
1 //=- RPCChannel.inc - LLVM out-of-process JIT execution for Windows --=//10 // Implementation of the Windows-specific parts of the RPCChannel class17 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() {}
1 //=- RPCChannel.inc - LLVM out-of-process JIT execution for Unix --=//10 // Implementation of the Unix-specific parts of the RPCChannel class35 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() {
23 class RPCChannel {27 RPCChannel() {} in RPCChannel() function28 ~RPCChannel();
32 RPCChannel RPC;
20 RPCChannel RPC;