Home
last modified time | relevance | path

Searched refs:ReplyCallbacks (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DClangdLSPServer.cpp213 for (size_t Index = 0; Index < ReplyCallbacks.size(); ++Index) { in onReply()
214 if (ReplyCallbacks[Index].first == *IntID) { in onReply()
215 ReplyHandler = std::move(ReplyCallbacks[Index].second); in onReply()
216 ReplyCallbacks.erase(ReplyCallbacks.begin() + in onReply()
253 ReplyCallbacks.emplace_back(ID, std::move(Reply)); in bindReply()
258 if (ReplyCallbacks.size() > MaxReplayCallbacks) { in bindReply()
260 MaxReplayCallbacks, ReplyCallbacks.front().first); in bindReply()
261 OldestCB = std::move(ReplyCallbacks.front()); in bindReply()
262 ReplyCallbacks.pop_front(); in bindReply()
405 ReplyCallbacks; /* GUARDED_BY(CallMutex) */ member in clang::clangd::ClangdLSPServer::MessageHandler