Home
last modified time | relevance | path

Searched defs:BaseClientCall (Results 1 – 4 of 4) sorted by relevance

/external/pigweed/pw_rpc/
Dbase_client_call_test.cc23 TEST(BaseClientCall, RegistersAndRemovesItselfFromClient) { in TEST() argument
31 [](BaseClientCall&, const Packet&) {}); in TEST() argument
53 TEST(BaseClientCall, SendsPacketWithPayload) { in TEST() argument
58 [](BaseClientCall&, const Packet&) {}); in TEST() argument
/external/pigweed/pw_rpc/public/pw_rpc/internal/
Dbase_client_call.h31 constexpr BaseClientCall(rpc::Channel* channel, in BaseClientCall() function
49 BaseClientCall(BaseClientCall&& other) { *this = std::move(other); } in BaseClientCall() function
/external/pigweed/pw_rpc/public/pw_rpc/
Dchannel.h26 class BaseClientCall; variable
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DClientInterceptorsTest.java421 private static class BaseClientCall extends ClientCall<String, Integer> { class in ClientInterceptorsTest