Lines Matching refs:WrapperFunctionCall
630 class WrapperFunctionCall {
637 static Expected<WrapperFunctionCall> Create(ExecutorAddr FnAddr, in Create()
644 return WrapperFunctionCall(FnAddr, std::move(ArgData)); in Create()
650 WrapperFunctionCall() = default;
653 WrapperFunctionCall(ExecutorAddr FnAddr, ArgDataBufferType ArgData) in WrapperFunctionCall() function
713 class SPSSerializationTraits<SPSWrapperFunctionCall, WrapperFunctionCall> {
715 static size_t size(const WrapperFunctionCall &WFC) { in size()
720 static bool serialize(SPSOutputBuffer &OB, const WrapperFunctionCall &WFC) { in serialize()
725 static bool deserialize(SPSInputBuffer &IB, WrapperFunctionCall &WFC) { in deserialize()
727 WrapperFunctionCall::ArgDataBufferType ArgData; in deserialize()
730 WFC = WrapperFunctionCall(FnAddr, std::move(ArgData)); in deserialize()