Home
last modified time | relevance | path

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

/external/pigweed/pw_rpc/
Dmethod_test.cc29 static_assert(!HasServerStream(MethodType::kUnary));
30 static_assert(HasServerStream(MethodType::kServerStreaming));
31 static_assert(!HasServerStream(MethodType::kClientStreaming));
32 static_assert(HasServerStream(MethodType::kBidirectionalStreaming));
/external/pigweed/pw_rpc/raw/public/pw_rpc/raw/
Dclient_testing.h47 HasServerStream(internal::MethodInfo<kMethod>::kType)>>
58 !HasServerStream(internal::MethodInfo<kMethod>::kType)>>
71 static_assert(HasServerStream(internal::MethodInfo<kMethod>::kType),
/external/pigweed/pw_rpc/public/pw_rpc/
Dmethod_type.h26 constexpr bool HasServerStream(MethodType type) { in HasServerStream() function
/external/pigweed/pw_rpc/nanopb/public/pw_rpc/nanopb/
Dfake_channel_output.h155 HasServerStream(internal::MethodInfo<kMethod>::kType)
/external/pigweed/pw_rpc/pwpb/public/pw_rpc/pwpb/
Dfake_channel_output.h157 HasServerStream(internal::MethodInfo<kMethod>::kType)
/external/pigweed/pw_rpc/public/pw_rpc/internal/
Dcall.h254 return HasServerStream(properties_.method_type()); in has_server_stream()