const google.golang.org/grpc/codes.Internal

72 uses

	google.golang.org/grpc/codes (current package)
		code_string.go#L59: 	case Internal:
		code_string.go#L100: 	case Internal:
		codes.go#L174: 	Internal Code = 13
		codes.go#L218: 	`"INTERNAL"`:            Internal,

	google.golang.org/grpc
		picker_wrapper.go#L166: 					err = status.Errorf(codes.Internal, "received picker error with illegal status: %v", err)
		preloader.go#L46: 		return status.Errorf(codes.Internal, "grpc: unable to get rpcInfo")
		preloader.go#L51: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo is nil")
		preloader.go#L54: 		return status.Errorf(codes.Internal, "grpc: rpcInfo.preloaderInfo.codec is nil")
		rpc_util.go#L724: 		return nil, status.Errorf(codes.Internal, "grpc: error while marshaling: %v", err.Error())
		rpc_util.go#L746: 		return status.Errorf(codes.Internal, "grpc: error while compressing: %v", err.Error())
		rpc_util.go#L817: 			return status.New(codes.Internal, "grpc: compressed flag set with identity or empty encoding")
		rpc_util.go#L823: 			return status.Newf(codes.Internal, "grpc: Decompressor is not installed for grpc-encoding %q", recvCompress)
		rpc_util.go#L826: 		return status.Newf(codes.Internal, "grpc: received unexpected payload format %d", pf)
		rpc_util.go#L891: 			return nil, status.Errorf(codes.Internal, "grpc: failed to decompress the received message: %v", err)
		rpc_util.go#L901: 			return nil, status.Errorf(codes.Internal, "grpc: failed to decompress the message: %v", err)
		rpc_util.go#L913: 			return nil, status.Errorf(codes.Internal, "grpc: failed to read decompressed data: %v", err)
		rpc_util.go#L922: 	return nil, status.Errorf(codes.Internal, "grpc: no decompressor available for compressed payload")
		rpc_util.go#L943: 		return status.Errorf(codes.Internal, "grpc: failed to unmarshal the received message: %v", err)
		rpc_util.go#L1021: 		return status.Error(codes.Internal, err.Error())
		rpc_util.go#L1064: 		return status.Errorf(codes.Internal, "no codec registered for content-subtype %s", c.contentSubtype)
		server.go#L1377: 			return status.Errorf(codes.Internal, "grpc: failed to set send compressor: %v", err)
		server.go#L1405: 			return status.Errorf(codes.Internal, "grpc: error unmarshalling request: %v", err)
		server.go#L1707: 			return status.Errorf(codes.Internal, "grpc: failed to set send compressor: %v", err)
		server.go#L2092: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L2108: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		server.go#L2182: 		return status.Errorf(codes.Internal, "grpc: failed to fetch the stream from the context %v", ctx)
		stream.go#L194: 			return nil, status.Error(codes.Internal, err.Error())
		stream.go#L200: 					return nil, status.Error(codes.Internal, err.Error())
		stream.go#L232: 				err = status.Errorf(codes.Internal, "config selector returned illegal status: %v", err)
		stream.go#L314: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L912: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L1180: 	return status.Errorf(codes.Internal, "cardinality violation: expected <EOF> for non server-streaming RPCs, but received another message")
		stream.go#L1295: 				return nil, status.Errorf(codes.Internal, "grpc: Compressor is not installed for requested grpc-encoding %q", ct)
		stream.go#L1419: 		return status.Errorf(codes.Internal, "SendMsg called after CloseSend")
		stream.go#L1504: 	return status.Errorf(codes.Internal, "cardinality violation: expected <EOF> for non server-streaming RPCs, but received another message")
		stream.go#L1628: 		return status.Error(codes.Internal, err.Error())
		stream.go#L1636: 		return status.Error(codes.Internal, err.Error())
		stream.go#L1788: 				return status.Error(codes.Internal, "cardinality violation: received no request message from non-client-streaming RPC")
		stream.go#L1793: 			err = status.Error(codes.Internal, io.ErrUnexpectedEOF.Error())
		stream.go#L1829: 	return status.Error(codes.Internal, "cardinality violation: received multiple request messages for non-client-streaming RPC")

	google.golang.org/grpc/internal/status
		status.go#L66: 			Code: int32(codes.Internal),

	google.golang.org/grpc/internal/transport
		handler_server.go#L110: 			return nil, status.Error(codes.Internal, msg)
		handler_server.go#L130: 				return nil, status.Error(codes.Internal, msg)
		http2_client.go#L666: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L699: 					err = status.Errorf(codes.Internal, "transport: received per-RPC creds error with illegal status: %v", err)
		http2_client.go#L703: 			return nil, status.Errorf(codes.Internal, "transport: per-RPC creds failed due to error: %v", err)
		http2_client.go#L865: 				hdrListSizeErr = status.Errorf(codes.Internal, "header list size to send violates the maximum size (%d bytes) set by server", *t.maxSendHeaderListSize)
		http2_client.go#L1210: 			t.closeStream(s, io.EOF, true, http2.ErrCodeFlowControl, status.New(codes.Internal, err.Error()), nil, false)
		http2_client.go#L1234: 		t.closeStream(s, io.EOF, false, http2.ErrCodeNo, status.New(codes.Internal, "server closed the stream without sending trailers"), nil, true)
		http2_client.go#L1447: 		st := status.New(codes.Internal, "a HEADERS frame cannot appear in the middle of a stream")
		http2_client.go#L1455: 		se := status.New(codes.Internal, "peer header list size exceeded limit")
		http2_client.go#L1494: 				se := status.New(codes.Internal, fmt.Sprintf("transport: malformed grpc-status: %v", err))
		http2_client.go#L1511: 				se := status.New(codes.Internal, fmt.Sprintf("transport: malformed http-status: %v", err))
		http2_client.go#L1538: 		var code = codes.Internal // when header does not include HTTP status, return INTERNAL
		http2_client.go#L1561: 		se := status.New(codes.Internal, headerError)
		http2_server.go#L62: 	ErrIllegalHeaderWrite = status.Error(codes.Internal, "transport: SendHeader called multiple times")
		http2_server.go#L65: 	ErrHeaderListSizeLimitViolation = status.Error(codes.Internal, "transport: trying to send header list size larger than the limit set by peer")
		http2_server.go#L449: 				headerError = status.Newf(codes.Internal, "malformed grpc-timeout: %v", err)
		http2_server.go#L464: 				headerError = status.Newf(codes.Internal, "malformed binary metadata %q in header %q: %v", hf.Value, hf.Name, err)
		http2_server.go#L486: 			status:         status.New(codes.Internal, errMsg),
		http2_server.go#L576: 			status:         status.New(codes.Internal, errMsg),
		http_util.go#L52: 		http2.ErrCodeNo:                 codes.Internal,
		http_util.go#L53: 		http2.ErrCodeProtocol:           codes.Internal,
		http_util.go#L54: 		http2.ErrCodeInternal:           codes.Internal,
		http_util.go#L56: 		http2.ErrCodeSettingsTimeout:    codes.Internal,
		http_util.go#L57: 		http2.ErrCodeStreamClosed:       codes.Internal,
		http_util.go#L58: 		http2.ErrCodeFrameSize:          codes.Internal,
		http_util.go#L61: 		http2.ErrCodeCompression:        codes.Internal,
		http_util.go#L62: 		http2.ErrCodeConnect:            codes.Internal,
		http_util.go#L65: 		http2.ErrCodeHTTP11Required:     codes.Internal,
		http_util.go#L70: 		http.StatusBadRequest: codes.Internal,
		transport.go#L699: 	return status.Errorf(codes.Internal, "Unexpected error from context packet: %v", err)