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

10 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L695: type NewStreamError struct {
		http2_client.go#L701: func (e NewStreamError) Error() string {
		http2_client.go#L723: 		return nil, &NewStreamError{Err: err, AllowTransparentRetry: false}
		http2_client.go#L827: 			return nil, &NewStreamError{Err: err, AllowTransparentRetry: true}
		http2_client.go#L833: 			return nil, &NewStreamError{Err: hdrListSizeErr}
		http2_client.go#L839: 			return nil, &NewStreamError{Err: ContextErr(ctx.Err())}
		http2_client.go#L841: 			return nil, &NewStreamError{Err: errStreamDrain, AllowTransparentRetry: true}
		http2_client.go#L843: 			return nil, &NewStreamError{Err: ErrConnClosing, AllowTransparentRetry: true}

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