golang.org/x/net/http2.flow.available (method)

9 uses

	golang.org/x/net/http2 (current package)
		flow.go#L25: func (f *flow) available() int32 {
		flow.go#L34: 	if n > f.available() {
		server.go#L1675: 		if sc.inflow.available() < int32(f.Length) {
		server.go#L1705: 		if st.inflow.available() < int32(f.Length) {
		transport.go#L1453: 		if a := cs.flow.available(); a > 0 {
		transport.go#L2136: 	if v := cc.inflow.available(); v < transportDefaultConnFlow/2 {
		transport.go#L2144: 		v := int(cs.inflow.available()) + cs.bufPipe.Len()
		transport.go#L2245: 		if cs.inflow.available() >= int32(f.Length) {
		writesched.go#L114: 	allowed := wr.stream.flow.available()