Lines Matching refs:WrapperFunctionCall
402 class WrapperFunctionCall {
411 static Expected<WrapperFunctionCall> Create(ExecutorAddr FnAddr, in Create()
418 return WrapperFunctionCall(FnAddr, std::move(ArgData)); in Create()
423 WrapperFunctionCall() = default;
426 WrapperFunctionCall(ExecutorAddr FnAddr, ArgDataBufferType ArgData) in WrapperFunctionCall() function
485 class SPSSerializationTraits<SPSWrapperFunctionCall, WrapperFunctionCall> {
487 static size_t size(const WrapperFunctionCall &WFC) { in size()
492 static bool serialize(SPSOutputBuffer &OB, const WrapperFunctionCall &WFC) { in serialize()
497 static bool deserialize(SPSInputBuffer &IB, WrapperFunctionCall &WFC) { in deserialize()
499 WrapperFunctionCall::ArgDataBufferType ArgData; in deserialize()
502 WFC = WrapperFunctionCall(FnAddr, std::move(ArgData)); in deserialize()