Lines Matching refs:WrapperFunctionCall
398 class WrapperFunctionCall {
407 static Expected<WrapperFunctionCall> Create(ExecutorAddr FnAddr, in Create()
413 return WrapperFunctionCall(FnAddr, std::move(ArgData)); in Create()
418 WrapperFunctionCall() = default;
421 WrapperFunctionCall(ExecutorAddr FnAddr, ArgDataBufferType ArgData) in WrapperFunctionCall() function
480 class SPSSerializationTraits<SPSWrapperFunctionCall, WrapperFunctionCall> {
482 static size_t size(const WrapperFunctionCall &WFC) { in size()
487 static bool serialize(SPSOutputBuffer &OB, const WrapperFunctionCall &WFC) { in serialize()
492 static bool deserialize(SPSInputBuffer &IB, WrapperFunctionCall &WFC) { in deserialize()
494 WrapperFunctionCall::ArgDataBufferType ArgData; in deserialize()
497 WFC = WrapperFunctionCall(FnAddr, std::move(ArgData)); in deserialize()