Lines Matching refs:WrapperFunctionCall
398 class WrapperFunctionCall {
407 static Expected<WrapperFunctionCall> Create(ExecutorAddr FnAddr, in Create()
414 return WrapperFunctionCall(FnAddr, std::move(ArgData)); in Create()
419 WrapperFunctionCall() = default;
422 WrapperFunctionCall(ExecutorAddr FnAddr, ArgDataBufferType ArgData) in WrapperFunctionCall() function
481 class SPSSerializationTraits<SPSWrapperFunctionCall, WrapperFunctionCall> {
483 static size_t size(const WrapperFunctionCall &WFC) { in size()
488 static bool serialize(SPSOutputBuffer &OB, const WrapperFunctionCall &WFC) { in serialize()
493 static bool deserialize(SPSInputBuffer &IB, WrapperFunctionCall &WFC) { in deserialize()
495 WrapperFunctionCall::ArgDataBufferType ArgData; in deserialize()
498 WFC = WrapperFunctionCall(FnAddr, std::move(ArgData)); in deserialize()