Home
last modified time | relevance | path

Searched refs:grpc_client_channel_factory (Results 1 – 11 of 11) sorted by relevance

/external/grpc-grpc/src/core/ext/filters/client_channel/
Dclient_channel_factory.h32 typedef struct grpc_client_channel_factory grpc_client_channel_factory; typedef
44 struct grpc_client_channel_factory { struct
49 void (*ref)(grpc_client_channel_factory* factory);
50 void (*unref)(grpc_client_channel_factory* factory);
51 grpc_subchannel* (*create_subchannel)(grpc_client_channel_factory* factory,
53 grpc_channel* (*create_client_channel)(grpc_client_channel_factory* factory,
59 void grpc_client_channel_factory_ref(grpc_client_channel_factory* factory);
60 void grpc_client_channel_factory_unref(grpc_client_channel_factory* factory);
64 grpc_client_channel_factory* factory, const grpc_subchannel_args* args);
68 grpc_client_channel_factory* factory, const char* target,
[all …]
Dclient_channel_factory.cc24 void grpc_client_channel_factory_ref(grpc_client_channel_factory* factory) { in grpc_client_channel_factory_ref()
28 void grpc_client_channel_factory_unref(grpc_client_channel_factory* factory) { in grpc_client_channel_factory_unref()
33 grpc_client_channel_factory* factory, const grpc_subchannel_args* args) { in grpc_client_channel_factory_create_subchannel()
38 grpc_client_channel_factory* factory, const char* target, in grpc_client_channel_factory_create_channel()
45 static_cast<grpc_client_channel_factory*>(factory)); in factory_arg_copy()
51 static_cast<grpc_client_channel_factory*>(factory)); in factory_arg_destroy()
64 grpc_client_channel_factory* factory) { in grpc_client_channel_factory_create_channel_arg()
Dlb_policy.h56 grpc_client_channel_factory* client_channel_factory = nullptr;
183 grpc_client_channel_factory* client_channel_factory() const { in client_channel_factory()
206 grpc_client_channel_factory* client_channel_factory_;
DREADME.md42 grpc_client_channel_factory objects, which use the decorator pattern to customize
Dclient_channel.cc94 grpc_client_channel_factory* client_channel_factory;
714 static_cast<grpc_client_channel_factory*>(arg->value.pointer.p)); in cc_init_channel_elem()
716 static_cast<grpc_client_channel_factory*>(arg->value.pointer.p); in cc_init_channel_elem()
/external/grpc-grpc/src/core/ext/transport/chttp2/client/insecure/
Dchannel_create.cc37 grpc_client_channel_factory* cc_factory) {} in client_channel_factory_ref()
40 grpc_client_channel_factory* cc_factory) {} in client_channel_factory_unref()
43 grpc_client_channel_factory* cc_factory, const grpc_subchannel_args* args) { in client_channel_factory_create_subchannel()
55 grpc_client_channel_factory* cc_factory, const char* target, in client_channel_factory_create_channel()
80 static grpc_client_channel_factory client_channel_factory = {
/external/grpc-grpc/src/core/ext/transport/chttp2/client/secure/
Dsecure_channel_create.cc44 grpc_client_channel_factory* cc_factory) {} in client_channel_factory_ref()
47 grpc_client_channel_factory* cc_factory) {} in client_channel_factory_unref()
149 grpc_client_channel_factory* cc_factory, const grpc_subchannel_args* args) { in client_channel_factory_create_subchannel()
168 grpc_client_channel_factory* cc_factory, const char* target, in client_channel_factory_create_channel()
193 static grpc_client_channel_factory client_channel_factory = {
/external/grpc-grpc/test/cpp/microbenchmarks/
Dbm_call_create.cc319 class FakeClientChannelFactory : public grpc_client_channel_factory {
324 static void NoRef(grpc_client_channel_factory* factory) {} in NoRef()
325 static void NoUnref(grpc_client_channel_factory* factory) {} in NoUnref()
326 static grpc_subchannel* CreateSubchannel(grpc_client_channel_factory* factory, in CreateSubchannel()
330 static grpc_channel* CreateClientChannel(grpc_client_channel_factory* factory, in CreateClientChannel()
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/
Dsubchannel_list.h237 grpc_client_channel_factory* client_channel_factory,
488 grpc_client_channel_factory* client_channel_factory, in SubchannelList()
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/pick_first/
Dpick_first.cc99 grpc_client_channel_factory* client_channel_factory, in PickFirstSubchannelList()
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/round_robin/
Dround_robin.cc140 grpc_client_channel_factory* client_channel_factory, in RoundRobinSubchannelList()