Home
last modified time | relevance | path

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

/llvm-project-15.0.7/openmp/libomptarget/plugins/remote/src/
H A DClient.cpp57 I32 Reply; in shutdown() local
76 return Reply; in registerLib()
99 return Reply; in unregisterLib()
128 return Reply; in isValidBinary()
151 return Reply; in getNumberOfDevices()
176 return Reply; in initDevice()
198 return Reply; in initRequires()
224 return Reply; in loadBinary()
257 return Reply; in isDataExchangeable()
398 if (Reply->start() == 0 && Reply->size() == Reply->data().size()) { in dataRetrieve()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DLSPBinderTests.cpp68 Reply(Foo{Params.X + 1}); in TEST()
95 RawPlusOne(1, capture(Reply)); in TEST()
96 ASSERT_TRUE(Reply.has_value()); in TEST()
99 ASSERT_TRUE(Reply.has_value()); in TEST()
101 Reply.value(), in TEST()
106 RawFail(2, capture(Reply)); in TEST()
107 ASSERT_TRUE(Reply.has_value()); in TEST()
120 ASSERT_TRUE(Reply.has_value()); in TEST()
140 Echo(Foo{2}, capture(Reply)); in TEST()
142 ASSERT_TRUE(Reply.has_value()); in TEST()
[all …]
H A DClangdLSPServerTests.cpp248 void get(const std::nullptr_t &, Callback<int> Reply) { in TEST_F() argument
251 [Reply(std::move(Reply)), Value(Value)]() mutable { Reply(Value); }); in TEST_F()
/llvm-project-15.0.7/openmp/libomptarget/plugins/remote/server/
H A DServer.cpp29 Reply->set_number(0); in Shutdown()
51 Reply->set_number(0); in RegisterLib()
58 Reply->set_number(1); in UnregisterLib()
67 Reply->set_number(0); in UnregisterLib()
145 Reply->set_number(-1); in IsDataExchangeable()
230 Reply->set_ret(Ret); in DataRetrieve()
248 Reply->set_start(0); in DataRetrieve()
251 Reply->set_ret(Ret); in DataRetrieve()
288 Reply->set_number(Ret); in DataDelete()
313 Reply->set_number(Ret); in RunTargetRegion()
[all …]
H A DServer.h60 I32 *Reply) override;
64 I32 *Reply) override;
66 I32 *Reply) override;
75 I32 *Reply) override;
77 I32 *Reply) override;
80 TargetTable *Reply) override;
85 Pointer *Reply) override;
88 I32 *Reply) override;
93 I32 *Reply) override;
96 I32 *Reply) override;
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DClangdLSPServer.cpp797 [Reply = std::move(Reply), in onWorkspaceSymbol()
1112 [Params, Reply = std::move(Reply)]( in onGoToDefinition()
1131 [Params, Reply = std::move(Reply)]( in onGoToDeclaration()
1150 [Reply = std::move(Reply), in onSwitchSourceHeader()
1227 [Reply = std::move(Reply)]( in onTypeHierarchy()
1247 [Reply = std::move(Reply)]( in onResolveTypeHierarchy()
1383 [Reply = std::move(Reply), in onReference()
1404 [Reply = std::move(Reply)]( in onGoToType()
1420 [Reply = std::move(Reply)]( in onGoToImplementation()
1442 [Reply = std::move(Reply)]( in onSelectionRange()
[all …]
H A DLSPBinder.h50 Callback<JSON> Reply) = 0;
137 Callback<JSON> Reply) { in method()
140 return Reply(P.takeError()); in method()
141 (This->*Handler)(*P, std::move(Reply)); in method()
162 Callback<JSON> Reply) { in command()
165 return Reply(P.takeError()); in command()
166 (This->*Handler)(*P, std::move(Reply)); in command()
200 return [Method(Method), Out(Out)](Request R, Callback<Response> Reply) {
204 [Reply(std::move(Reply)), Ctx(Context::current().clone()),
207 return Reply(RawRsp.takeError());
[all …]
H A DClangdLSPServer.h194 Callback<llvm::json::Value> Reply);
/llvm-project-15.0.7/mlir/lib/Tools/lsp-server-support/
H A DTransport.cpp30 class Reply { class
32 Reply(const llvm::json::Value &id, StringRef method,
34 Reply(Reply &&other);
35 Reply &operator=(Reply &&) = delete;
36 Reply(const Reply &) = delete;
37 Reply &operator=(const Reply &) = delete;
49 Reply::Reply(const llvm::json::Value &id, llvm::StringRef method, in Reply() function in Reply
53 Reply::Reply(Reply &&other) in Reply() function in Reply
59 void Reply::operator()(llvm::Expected<llvm::json::Value> reply) { in operator ()()
100 Reply reply(id, method, transport); in onCall()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/server/
H A DServer.cpp132 grpc::ServerWriter<LookupReply> *Reply) override { in Lookup() argument
160 Reply->Write(NextMessage); in Lookup()
168 Reply->Write(LastMessage); in Lookup()
206 Reply->Write(NextMessage); in FuzzyFind()
212 Reply->Write(LastMessage); in FuzzyFind()
220 grpc::ServerWriter<RefsReply> *Reply) override { in Refs() argument
248 Reply->Write(NextMessage); in Refs()
254 Reply->Write(LastMessage); in Refs()
294 Reply->Write(NextMessage); in Relations()
300 Reply->Write(LastMessage); in Relations()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/index/remote/
H A DClient.cpp85 ReplyT Reply; in streamRPC() local
88 while (Reader->Read(&Reply)) { in streamRPC()
89 if (!Reply.has_stream_result()) { in streamRPC()
90 HasMore = Reply.final_result().has_more(); in streamRPC()
93 auto Response = ProtobufMarshaller->fromProtobuf(Reply.stream_result()); in streamRPC()
96 ReplyT::descriptor()->name(), Reply.stream_result().DebugString(), in streamRPC()
/llvm-project-15.0.7/clang-tools-extra/clangd/test/
H A Dsemantic-tokens-refresh.test16 # Reply with success.
36 # Reply with error, to make sure there are no crashes.
/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DTestClient.h65 if (const auto *Reply = llvm::dyn_cast<T>(m_stop_reply.get())) in GetLatestStopReplyAs() local
66 return *Reply; in GetLatestStopReplyAs()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachException.h98 kern_return_t Reply(MachProcess *process, int signal);
H A DMachException.cpp295 kern_return_t MachException::Message::Reply(MachProcess *process, int signal) { in Reply() function in MachException::Message
H A DMachProcess.mm1789 DNBError err(pos->Reply(this, thread_reply_signal));
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DChangeLog391 (MachException::Message::Reply): Ditto.
443 (MachException::Message::Reply): Use abstracted MachTask class for any
484 (MachException::Message::Reply): Improved logging.
634 (MachException::Message::Reply): Added better logging and log using the
882 * MachException.h (MachException::Message::Reply): Added a signal
884 * MachException.cpp (MachException::Message::Reply): Update the thread
1418 * RNBRemote.cpp (RNBRemote::HandlePacket_q): Reply "" to qSymbols
/llvm-project-15.0.7/lldb/docs/
H A Dlldb-gdb-remote.txt906 Reply:
927 Reply: