const golang.org/x/net/http2.ErrCodeFlowControl

19 uses

	golang.org/x/net/http2 (current package)
		errors.go#L19: 	ErrCodeFlowControl        ErrCode = 0x3
		errors.go#L36: 	ErrCodeFlowControl:        "FLOW_CONTROL_ERROR",
		frame.go#L763: 		return nil, ConnectionError(ErrCodeFlowControl)
		http2.go#L148: 			return ConnectionError(ErrCodeFlowControl)
		server.go#L1566: 		sc.goAway(ErrCodeFlowControl)
		server.go#L1606: 				return sc.countError("data_flow", streamError(f.Header().StreamID, ErrCodeFlowControl))
		server.go#L1685: 			return sc.countError("bad_flow", streamError(f.StreamID, ErrCodeFlowControl))
		server.go#L1847: 			return sc.countError("setting_win_size", ConnectionError(ErrCodeFlowControl))
		server.go#L1887: 			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
		server.go#L1904: 			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
		server.go#L1917: 			return sc.countError("flow_on_data_length", streamError(id, ErrCodeFlowControl))
		transport.go#L2670: 				return ConnectionError(ErrCodeFlowControl)
		transport.go#L2710: 			return ConnectionError(ErrCodeFlowControl)
		transport.go#L2875: 				return ConnectionError(ErrCodeFlowControl)
		transport.go#L2949: 				Code:     ErrCodeFlowControl,
		transport.go#L2954: 		return ConnectionError(ErrCodeFlowControl)

	google.golang.org/grpc/internal/transport
		http2_client.go#L1148: 			t.closeStream(s, io.EOF, true, http2.ErrCodeFlowControl, status.New(codes.Internal, err.Error()), nil, false)
		http2_server.go#L789: 			t.closeStream(s, true, http2.ErrCodeFlowControl, false)
		http_util.go#L57: 		http2.ErrCodeFlowControl:        codes.ResourceExhausted,