net/http.http2flow.add (method)

22 uses

	net/http (current package)
		h2_bundle.go#L1252: func (f *http2flow) add(n int32) bool {
		h2_bundle.go#L3979: 	sc.flow.add(http2initialWindowSize)
		h2_bundle.go#L3980: 	sc.inflow.add(http2initialWindowSize)
		h2_bundle.go#L5046: 		if !st.flow.add(int32(f.Increment)) {
		h2_bundle.go#L5050: 		if !sc.flow.add(int32(f.Increment)) {
		h2_bundle.go#L5188: 		if !st.flow.add(growth) {
		h2_bundle.go#L5525: 	st.flow.add(sc.initialStreamSendWindowSize)
		h2_bundle.go#L5527: 	st.inflow.add(sc.srv.initialStreamRecvWindowSize())
		h2_bundle.go#L5843: 		ok = sc.inflow.add(n)
		h2_bundle.go#L5845: 		ok = st.inflow.add(n)
		h2_bundle.go#L7167: 	cc.flow.add(int32(http2initialWindowSize))
		h2_bundle.go#L7201: 	cc.inflow.add(http2transportDefaultConnFlow + http2initialWindowSize)
		h2_bundle.go#L8201: 	cs.flow.add(int32(cc.initialWindowSize))
		h2_bundle.go#L8203: 	cs.inflow.add(http2transportDefaultStreamFlow)
		h2_bundle.go#L8641: 		cc.inflow.add(connAdd)
		h2_bundle.go#L8650: 			cs.inflow.add(streamAdd)
		h2_bundle.go#L8685: 			cc.inflow.add(int32(unread))
		h2_bundle.go#L8719: 			cc.inflow.add(int32(f.Length))
		h2_bundle.go#L8767: 			cc.inflow.add(int32(refund))
		h2_bundle.go#L8771: 				cs.inflow.add(int32(refund))
		h2_bundle.go#L8872: 				cs.flow.add(delta)
		h2_bundle.go#L8909: 	if !fl.add(int32(f.Increment)) {