Home | History | Annotate | Download | only in Orc

Lines Matching refs:ResponseId

398   static Error sendResult(ChannelT &C, const FunctionIdT &ResponseId,
405 if (auto Err = C.startSendMessage(ResponseId, SeqNo))
420 static Error sendResult(ChannelT &C, const FunctionIdT &ResponseId,
424 if (auto Err2 = C.startSendMessage(ResponseId, SeqNo))
440 static Error sendResult(ChannelT &C, const FunctionIdT &ResponseId,
447 if (auto Err = C.startSendMessage(ResponseId, SeqNo))
461 static Error sendResult(ChannelT &C, const FunctionIdT &ResponseId,
465 if (auto Err2 = C.startSendMessage(ResponseId, SeqNo))
477 Error respond(ChannelT &C, const FunctionIdT &ResponseId,
480 template sendResult<WireRetT>(C, ResponseId, SeqNo, std::move(ResultOrErr));
487 Error respond(ChannelT &C, const FunctionIdT &ResponseId, SequenceNumberT SeqNo,
490 sendResult(C, ResponseId, SeqNo, std::move(Err));
1053 // Hold ResponseId in a special variable, since we expect Response to be
1055 ResponseId = FnIdAllocator.getResponseId();
1056 RemoteFunctionIds[OrcRPCResponse::getPrototype()] = ResponseId;
1150 if (FnId == ResponseId)
1356 return detail::respond<FuncReturn>(Channel, ResponseId, SeqNo,
1392 return detail::respond<FuncReturn>(C, ResponseId, SeqNo,
1406 FunctionIdT ResponseId;