Home
last modified time | relevance | path

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

/external/llvm-project/llvm/unittests/ExecutionEngine/Orc/
DQueueChannel.h73 class QueueChannel : public orc::rpc::RawByteChannel {
75 QueueChannel(std::shared_ptr<Queue> InQueue, in QueueChannel() function
79 QueueChannel(const QueueChannel&) = delete;
80 QueueChannel& operator=(const QueueChannel&) = delete;
81 QueueChannel(QueueChannel&&) = delete;
82 QueueChannel& operator=(QueueChannel&&) = delete;
167 inline std::pair<std::unique_ptr<QueueChannel>, std::unique_ptr<QueueChannel>>
171 auto C1 = std::make_unique<QueueChannel>(Q1, Q2); in createPairedQueueChannels()
172 auto C2 = std::make_unique<QueueChannel>(Q2, Q1); in createPairedQueueChannels()
DRPCUtilsTest.cpp32 class SerializationTraits<QueueChannel, RPCFoo, RPCFoo> {
34 static Error serialize(QueueChannel&, const RPCFoo&) { in serialize() argument
38 static Error deserialize(QueueChannel&, RPCFoo&) { in deserialize() argument
102 class SerializationTraits<QueueChannel, RPCFoo, RPCBar> {
104 static Error serialize(QueueChannel&, const RPCBar&) { in serialize() argument
108 static Error deserialize(QueueChannel&, RPCBar&) { in deserialize() argument
160 class DummyRPCEndpoint : public SingleThreadedRPCEndpoint<QueueChannel> {
162 DummyRPCEndpoint(QueueChannel &C) in DummyRPCEndpoint()
617 registerDummyErrorSerialization<QueueChannel>(); in TEST()
646 registerDummyErrorSerialization<QueueChannel>(); in TEST()
[all …]
DCMakeLists.txt21 QueueChannel.cpp
/external/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp28 class QueueChannel : public RPCChannel { class
30 QueueChannel(Queue &InQueue, Queue &OutQueue) in QueueChannel() function in QueueChannel
64 class DummyRPC : public testing::Test, public RPC<QueueChannel> {
82 QueueChannel C1(Q1, Q2); in TEST_F()
83 QueueChannel C2(Q2, Q1); in TEST_F()
111 QueueChannel C1(Q1, Q2); in TEST_F()
112 QueueChannel C2(Q2, Q1); in TEST_F()
141 QueueChannel C1(Q1, Q2); in TEST_F()
142 QueueChannel C2(Q2, Q1); in TEST_F()
/external/llvm-project/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/Orc/
DBUILD.gn21 "QueueChannel.cpp",