net/http.http2ClientConn.streams (field)

16 uses

	net/http (current package)
		h2_bundle.go#L6754: 	streams         map[uint32]*http2clientStream // client-initiated
		h2_bundle.go#L7153: 		streams:               make(map[uint32]*http2clientStream),
		h2_bundle.go#L7241: 	for streamID, cs := range cc.streams {
		h2_bundle.go#L7284: 		maxConcurrentOkay = int64(len(cc.streams)+1) < int64(cc.maxConcurrentStreams)
		h2_bundle.go#L7321: 	if len(cc.streams) > 0 {
		h2_bundle.go#L7350: 			if len(cc.streams) == 0 || cc.closed {
		h2_bundle.go#L7403: 	for id, cs := range cc.streams {
		h2_bundle.go#L7409: 		delete(cc.streams, id)
		h2_bundle.go#L7741: 		if int64(len(cc.streams))+1 <= int64(cc.maxConcurrentStreams) {
		h2_bundle.go#L8206: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L8217: 	cs := cc.streams[id]
		h2_bundle.go#L8220: 		delete(cc.streams, id)
		h2_bundle.go#L8221: 		if len(cc.streams) == 0 && cc.idleTimer != nil {
		h2_bundle.go#L8297: 	for _, cs := range cc.streams {
		h2_bundle.go#L8871: 			for _, cs := range cc.streams {
		h2_bundle.go#L9227: 	ci.WasIdle = len(cc.streams) == 0 && reused