type net/http.http2stream

26 uses

	net/http (current package)
		h2_bundle.go#L3942: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4092: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4140: type http2stream struct {
		h2_bundle.go#L4174: func (sc *http2serverConn) state(streamID uint32) (http2streamState, *http2stream) {
		h2_bundle.go#L4569: func (sc *http2serverConn) writeDataFromHandler(stream *http2stream, data []byte, endStream bool) error {
		h2_bundle.go#L5077: func (sc *http2serverConn) closeStream(st *http2stream, err error) {
		h2_bundle.go#L5305: func (st *http2stream) isPushed() bool {
		h2_bundle.go#L5311: func (st *http2stream) endStream() {
		h2_bundle.go#L5327: func (st *http2stream) copyTrailersToHandlerRequest() {
		h2_bundle.go#L5338: func (st *http2stream) onWriteTimeout() {
		h2_bundle.go#L5457: func (st *http2stream) processTrailerHeaders(f *http2MetaHeadersFrame) error {
		h2_bundle.go#L5509: func (sc *http2serverConn) newStream(id, pusherID uint32, state http2streamState) *http2stream {
		h2_bundle.go#L5516: 	st := &http2stream{
		h2_bundle.go#L5546: func (sc *http2serverConn) newWriterAndRequest(st *http2stream, f *http2MetaHeadersFrame) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L5616: func (sc *http2serverConn) newWriterAndRequestNoBody(st *http2stream, rp http2requestParam) (*http2responseWriter, *Request, error) {
		h2_bundle.go#L5739: func (sc *http2serverConn) writeHeaders(st *http2stream, headerData *http2writeResHeaders) error {
		h2_bundle.go#L5771: func (sc *http2serverConn) write100ContinueHeaders(st *http2stream) {
		h2_bundle.go#L5781: 	st *http2stream
		h2_bundle.go#L5788: func (sc *http2serverConn) noteBodyReadFromHandler(st *http2stream, n int, err error) {
		h2_bundle.go#L5798: func (sc *http2serverConn) noteBodyRead(st *http2stream, n int) {
		h2_bundle.go#L5809: func (sc *http2serverConn) sendWindowUpdate(st *http2stream, n int) {
		h2_bundle.go#L5825: func (sc *http2serverConn) sendWindowUpdate32(st *http2stream, n int32) {
		h2_bundle.go#L5856: 	stream        *http2stream
		h2_bundle.go#L5910: 	stream *http2stream
		h2_bundle.go#L6391: 	parent *http2stream
		h2_bundle.go#L9663: 	stream *http2stream