Lines Matching refs:SeqNo

94   uint64_t SeqNo;  in callWrapperAsync()  local
97 SeqNo = getNextSeqNo(); in callWrapperAsync()
98 assert(!PendingCallWrapperResults.count(SeqNo) && "SeqNo already in use"); in callWrapperAsync()
99 PendingCallWrapperResults[SeqNo] = std::move(OnComplete); in callWrapperAsync()
102 if (auto Err = sendMessage(SimpleRemoteEPCOpcode::CallWrapper, SeqNo, in callWrapperAsync()
113 auto I = PendingCallWrapperResults.find(SeqNo); in callWrapperAsync()
136 SimpleRemoteEPC::handleMessage(SimpleRemoteEPCOpcode OpC, uint64_t SeqNo, in handleMessage() argument
145 assert(SeqNo == 0 && "Non-zero SeqNo for Setup?"); in handleMessage()
150 assert(SeqNo == 0 && "Non-zero SeqNo for Hangup?"); in handleMessage()
161 dbgs() << ", seqno = " << SeqNo << ", tag-addr = " << TagAddr in handleMessage()
173 if (auto Err = handleSetup(SeqNo, TagAddr, std::move(ArgBytes))) in handleMessage()
182 if (auto Err = handleResult(SeqNo, TagAddr, std::move(ArgBytes))) in handleMessage()
186 handleCallWrapper(SeqNo, TagAddr, std::move(ArgBytes)); in handleMessage()
234 Error SimpleRemoteEPC::sendMessage(SimpleRemoteEPCOpcode OpC, uint64_t SeqNo, in sendMessage() argument
245 assert(SeqNo == 0 && "Non-zero SeqNo for Hangup?"); in sendMessage()
258 dbgs() << ", seqno = " << SeqNo << ", tag-addr = " << TagAddr in sendMessage()
262 auto Err = T->sendMessage(OpC, SeqNo, TagAddr, ArgBytes); in sendMessage()
270 Error SimpleRemoteEPC::handleSetup(uint64_t SeqNo, ExecutorAddr TagAddr, in handleSetup() argument
272 if (SeqNo != 0) in handleSetup()
387 Error SimpleRemoteEPC::handleResult(uint64_t SeqNo, ExecutorAddr TagAddr, in handleResult() argument
397 auto I = PendingCallWrapperResults.find(SeqNo); in handleResult()
400 Twine(SeqNo), in handleResult()
404 releaseSeqNo(SeqNo); in handleResult()