type google.golang.org/grpc/internal/transport.NewStreamError

12 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L745: type NewStreamError struct {
		http2_client.go#L751: func (e NewStreamError) Error() string {
		http2_client.go#L780: 			return nil, &NewStreamError{Err: status.Errorf(codes.Unavailable, "credentials type %q does not implement the AuthorityValidator interface, but authority override specified with CallAuthority call option", t.authInfo.AuthType())}
		http2_client.go#L783: 			return nil, &NewStreamError{Err: status.Errorf(codes.Unavailable, "failed to validate authority %q : %v", callHdr.Authority, err)}
		http2_client.go#L792: 		return nil, &NewStreamError{Err: err, AllowTransparentRetry: false}
		http2_client.go#L900: 			return nil, &NewStreamError{Err: err, AllowTransparentRetry: true}
		http2_client.go#L906: 			return nil, &NewStreamError{Err: hdrListSizeErr}
		http2_client.go#L912: 			return nil, &NewStreamError{Err: ContextErr(ctx.Err())}
		http2_client.go#L914: 			return nil, &NewStreamError{Err: errStreamDrain, AllowTransparentRetry: true}
		http2_client.go#L916: 			return nil, &NewStreamError{Err: ErrConnClosing, AllowTransparentRetry: true}

	google.golang.org/grpc
		rpc_util.go#L1148: 	case *transport.NewStreamError:
		stream.go#L554: 		nse, ok := err.(*transport.NewStreamError)