Searched defs:ClientConn (Results 1 – 17 of 17) sorted by relevance
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | transport.go | 145 type ClientConn struct { struct 146 t *Transport member 147 tconn net.Conn // usually *tls.Conn, except specialized impls 148 tlsState *tls.ConnectionState // nil only for specialized impls 149 singleUse bool // whether being used for a single http.Request 152 readerDone chan struct{} // closed on error 153 readerErr error // set before readerDone is closed 155 idleTimeout time.Duration // or 0 for never 156 idleTimer *time.Timer 158 mu sync.Mutex // guards following [all …]
|
D | client_conn_pool.go | 18 MarkDead(*ClientConn) 234 func filterOutClientConn(in []*ClientConn, exclude *ClientConn) []*ClientConn {
|
D | go17.go | 51 func traceGotConn(req *http.Request, cc *ClientConn) {
|
D | not_go17.go | 37 func traceGotConn(*http.Request, *ClientConn) {}
|
/external/syzkaller/vendor/google.golang.org/grpc/ |
D | clientconn.go | 678 type ClientConn struct { struct 679 ctx context.Context 680 cancel context.CancelFunc 682 target string 683 parsedTarget resolver.Target 684 authority string 685 dopts dialOptions 686 csMgr *connectivityStateManager 688 balancerBuildOpts balancer.BuildOptions 689 resolverWrapper *ccResolverWrapper [all …]
|
D | call.go | 59 func Invoke(ctx context.Context, method string, args, reply interface{}, cc *ClientConn, opts ...Ca… 65 func invoke(ctx context.Context, method string, req, reply interface{}, cc *ClientConn, opts ...Cal…
|
D | resolver_conn_wrapper.go | 73 func newCCResolverWrapper(cc *ClientConn) (*ccResolverWrapper, error) {
|
D | balancer_conn_wrappers.go | 105 func newCCBalancerWrapper(cc *ClientConn, b balancer.Builder, bopts balancer.BuildOptions) *ccBalan…
|
D | stream.go | 133 func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...… 137 func newClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...…
|
/external/syzkaller/vendor/google.golang.org/grpc/resolver/ |
D | resolver.go | 104 type ClientConn interface { interface 128 Build(target Target, cc ClientConn, opts BuildOption) (Resolver, error)
|
/external/syzkaller/vendor/google.golang.org/grpc/balancer/ |
D | balancer.go | 99 type ClientConn interface { interface 139 Build(cc ClientConn, opts BuildOptions) Balancer
|
/external/syzkaller/vendor/google.golang.org/api/option/ |
D | option.go | 118 func WithGRPCConn(conn *grpc.ClientConn) ClientOption {
|
/external/syzkaller/vendor/cloud.google.com/go/iam/ |
D | iam.go | 78 func InternalNewHandle(conn *grpc.ClientConn, resource string) *Handle {
|
/external/golang-protobuf/protoc-gen-go/testdata/deprecated/ |
D | deprecated.pb.go | 216 func NewDeprecatedServiceClient(cc *grpc.ClientConn) DeprecatedServiceClient {
|
/external/flatbuffers/tests/MyGame/Example/ |
D | MonsterStorage_grpc.go | 30 func NewMonsterStorageClient(cc *grpc.ClientConn) MonsterStorageClient {
|
/external/syzkaller/vendor/google.golang.org/genproto/googleapis/iam/v1/ |
D | iam_policy.pb.go | 254 func NewIAMPolicyClient(cc *grpc.ClientConn) IAMPolicyClient {
|
/external/golang-protobuf/protoc-gen-go/testdata/grpc/ |
D | grpc.pb.go | 203 func NewTestClient(cc *grpc.ClientConn) TestClient {
|