/external/pigweed/pw_rpc/ |
D | fake_channel_output_test.cc | 77 constexpr MethodType type = MethodType::kUnary; in TEST() 124 constexpr MethodType type = MethodType::kUnary; in TEST() 169 ASSERT_EQ(output.last_response(MethodType::kUnary).size(), kPayload.size()); in TEST() 170 EXPECT_EQ(std::memcmp(output.last_response(MethodType::kUnary).data(), in TEST() 174 EXPECT_EQ(output.total_payloads(MethodType::kUnary), 1u); in TEST() 186 EXPECT_EQ(output.last_response(MethodType::kUnary).size(), 0u); in TEST() 187 EXPECT_EQ(output.total_payloads(MethodType::kUnary), 1u); in TEST()
|
D | method_test.cc | 29 static_assert(!HasServerStream(MethodType::kUnary)); 34 static_assert(!HasClientStream(MethodType::kUnary));
|
D | call_test.cc | 78 MethodType::kUnary, kClientCall, kProtoStruct); in TEST() 79 static_assert(props_3.method_type() == MethodType::kUnary); in TEST()
|
/external/pigweed/pw_rpc/public/pw_rpc/ |
D | synchronous_call.h | 102 static_assert(Info::kType == MethodType::kUnary, in SynchronousCall() 133 static_assert(Info::kType == MethodType::kUnary, in SynchronousCall() 169 static_assert(Info::kType == MethodType::kUnary, in SynchronousCallFor() 204 static_assert(Info::kType == MethodType::kUnary, in SynchronousCallFor() 242 static_assert(Info::kType == MethodType::kUnary, in SynchronousCallUntil() 277 static_assert(Info::kType == MethodType::kUnary, in SynchronousCallUntil()
|
D | method_type.h | 19 kUnary = 0b00, enumerator
|
D | server.h | 145 if constexpr (kExpected == MethodType::kUnary) { in OpenCall()
|
D | payloads_view.h | 175 case MethodType::kUnary: in PacketTypesWithPayload()
|
/external/pigweed/pw_rpc/public/pw_rpc/internal/ |
D | test_method.h | 48 constexpr TestMethod(uint32_t id, MethodType type = MethodType::kUnary) 86 case MethodType::kUnary: in GetInvoker() 87 return InvokeForTest<MethodType::kUnary>; in GetInvoker()
|
D | method_impl_tester.h | 129 MethodType::kUnary); 131 MethodType::kUnary); 133 MethodType::kUnary); 138 MethodType::kUnary);
|
D | method_union.h | 79 if constexpr (kExpected == MethodType::kUnary) { in InvalidMethod() 115 } else if constexpr (kType == MethodType::kUnary) { in GetMethodFor()
|
/external/pigweed/pw_rpc/raw/ |
D | method_union_test.cc | 39 GetRawMethodFor<&Implementation::DoNothing, MethodType::kUnary>(10u), 40 GetRawMethodFor<&Implementation::AddFive, MethodType::kUnary>(11u),
|
D | client_test.cc | 33 static constexpr MethodType kType = MethodType::kUnary;
|
/external/pigweed/pw_rpc/nanopb/ |
D | method_union_test.cc | 35 MethodType::kUnary, 49 MethodType::kUnary,
|
D | method.cc | 39 NanopbServerCall responder(context.ClaimLocked(), MethodType::kUnary); in CallSynchronousUnary()
|
/external/pigweed/pw_rpc/raw/public/pw_rpc/raw/ |
D | server_reader_writer.h | 223 return server.OpenCall<RawUnaryResponder, kMethod, MethodType::kUnary>( in Open() 254 : RawServerReaderWriter(context, MethodType::kUnary) {} in PW_EXCLUSIVE_LOCKS_REQUIRED()
|
D | client_reader_writer.h | 183 RawCallProps(MethodType::kUnary)) {} in RawUnaryReceiver()
|
/external/pigweed/pw_rpc/pwpb/ |
D | method_union_test.cc | 36 MethodType::kUnary, 50 MethodType::kUnary,
|
/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/internal/ |
D | method.h | 255 MethodType::kUnary); in CallSynchronousUnary() 322 .CallUnaryRequest(context, MethodType::kUnary, request, request_struct); in AsynchronousUnaryInvoker() 376 static constexpr MethodType kType = MethodType::kUnary;
|
/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/ |
D | server_reader_writer.h | 424 .OpenCall<PwpbUnaryResponder<Response>, kMethod, MethodType::kUnary>( in Open() 466 : internal::PwpbServerCall(context, MethodType::kUnary) {} in PW_EXCLUSIVE_LOCKS_REQUIRED()
|
D | client_reader_writer.h | 469 MethodType::kUnary, in PwpbUnaryReceiver()
|
/external/pigweed/pw_rpc/nanopb/public/pw_rpc/nanopb/ |
D | server_reader_writer.h | 355 .OpenCall<NanopbUnaryResponder<Response>, kMethod, MethodType::kUnary>( in Open() 396 : internal::NanopbServerCall(context, MethodType::kUnary) {} in PW_EXCLUSIVE_LOCKS_REQUIRED()
|
D | client_reader_writer.h | 394 MethodType::kUnary, in NanopbUnaryReceiver()
|
/external/pigweed/pw_rpc/nanopb/public/pw_rpc/nanopb/internal/ |
D | method.h | 63 static constexpr MethodType kType = MethodType::kUnary; 364 context, MethodType::kUnary, request, &request_struct);
|
/external/pigweed/pw_rpc/raw/public/pw_rpc/raw/internal/ |
D | method.h | 149 static constexpr MethodType kType = MethodType::kUnary;
|