func google.golang.org/grpc/status.Errorf

37 uses

	google.golang.org/grpc/status (current package)
		status.go#L63: func Errorf(c codes.Code, format string, a ...interface{}) error {

	google.golang.org/grpc
		clientconn.go#L686: 		err = status.Errorf(codes.Unavailable, "error parsing service config: %v", sc.Err)
		clientconn.go#L688: 		err = status.Errorf(codes.Unavailable, "illegal service config type: %T", sc.Config)
		picker_wrapper.go#L142: 					err = status.Errorf(codes.Internal, "received picker error with illegal status: %v", err)
		preloader.go#L44: 		return status.Errorf(codes.Internal, "grpc: unable to get rpcInfo")
		preloader.go#L49: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo is nil")
		preloader.go#L52: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo.codec is nil")
		rpc_util.go#L572: 		return 0, nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max length allowed on current machine (%d vs. %d)", length, maxInt)
		rpc_util.go#L575: 		return 0, nil, status.Errorf(codes.ResourceExhausted, "grpc: received message larger than max (%d vs. %d)", length, maxReceiveMessageSize)
		rpc_util.go#L598: 		return nil, status.Errorf(codes.Internal, "grpc: error while marshaling: %v", err.Error())
		rpc_util.go#L601: 		return nil, status.Errorf(codes.ResourceExhausted, "grpc: message too large (%d bytes)", len(b))
		rpc_util.go#L615: 		return status.Errorf(codes.Internal, "grpc: error while compressing: %v", err.Error())
		rpc_util.go#L715: 			return nil, status.Errorf(codes.Internal, "grpc: failed to decompress the received message: %v", err)
		rpc_util.go#L720: 			return nil, status.Errorf(codes.ResourceExhausted, "grpc: received message after decompression larger than max (%d vs. %d)", size, maxReceiveMessageSize)
		rpc_util.go#L763: 		return status.Errorf(codes.Internal, "grpc: failed to unmarshal the received message: %v", err)
		rpc_util.go#L827: 	return status.Errorf(c, format, a...)
		rpc_util.go#L883: 		return status.Errorf(codes.Internal, "no codec registered for content-subtype %s", c.contentSubtype)
		server.go#L1120: 		return status.Errorf(codes.ResourceExhausted, "grpc: trying to send message larger than max (%d vs. %d)", len(payload), s.opts.maxSendMessageSize)
		server.go#L1311: 			return status.Errorf(codes.Internal, "grpc: error unmarshalling request: %v", err)
		server.go#L1914: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L1930: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L1950: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		stream.go#L202: 				err = status.Errorf(codes.Internal, "config selector returned illegal status: %v", err)
		stream.go#L283: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L858: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L872: 		return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payload), *cs.callInfo.maxSendMessageSize)
		stream.go#L1220: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L1337: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L1351: 		return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payld), *as.callInfo.maxSendMessageSize)
		stream.go#L1614: 		return status.Errorf(codes.ResourceExhausted, "trying to send message larger than max (%d vs. %d)", len(payload), ss.maxSendMessageSize)
		stream.go#L1688: 			err = status.Errorf(codes.Internal, io.ErrUnexpectedEOF.Error())

	google.golang.org/grpc/internal/transport
		http2_client.go#L635: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L640: 			return nil, status.Errorf(codes.Unauthenticated, "transport: per-RPC creds failed due to error: %v", err)
		http2_client.go#L668: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L672: 			return nil, status.Errorf(codes.Internal, "transport: per-RPC creds failed due to error: %v", err)
		http2_client.go#L815: 				hdrListSizeErr = status.Errorf(codes.Internal, "header list size to send violates the maximum size (%d bytes) set by server", *t.maxSendHeaderListSize)
		transport.go#L822: 	return status.Errorf(codes.Internal, "Unexpected error from context packet: %v", err)