type net/http.http2clientStream

22 uses

	net/http (current package)
		h2_bundle.go#L6754: 	streams         map[uint32]*http2clientStream // client-initiated
		h2_bundle.go#L6779: type http2clientStream struct {
		h2_bundle.go#L6834: func (cs *http2clientStream) get1xxTraceFunc() func(int, textproto.MIMEHeader) error {
		h2_bundle.go#L6845: func (cs *http2clientStream) awaitRequestCancel(req *Request) {
		h2_bundle.go#L6852: func (cs *http2clientStream) cancelStream() {
		h2_bundle.go#L6867: func (cs *http2clientStream) checkResetOrDone() error {
		h2_bundle.go#L6878: func (cs *http2clientStream) getStartedWrite() bool {
		h2_bundle.go#L6885: func (cs *http2clientStream) abortRequestBodyWrite(err error) {
		h2_bundle.go#L7153: 		streams:               make(map[uint32]*http2clientStream),
		h2_bundle.go#L7811: func (cs *http2clientStream) writeRequestBody(body io.Reader, bodyCloser io.Closer) (err error) {
		h2_bundle.go#L7942: func (cs *http2clientStream) awaitFlowControl(maxBytes int) (taken int32, err error) {
		h2_bundle.go#L8193: func (cc *http2ClientConn) newStream() *http2clientStream {
		h2_bundle.go#L8194: 	cs := &http2clientStream{
		h2_bundle.go#L8214: func (cc *http2ClientConn) streamByID(id uint32, andRemove bool) *http2clientStream {
		h2_bundle.go#L8460: func (rl *http2clientConnReadLoop) handleResponse(cs *http2clientStream, f *http2MetaHeadersFrame) (*Response, error) {
		h2_bundle.go#L8569: func (rl *http2clientConnReadLoop) processTrailers(cs *http2clientStream, f *http2MetaHeadersFrame) error {
		h2_bundle.go#L8601: 	cs *http2clientStream
		h2_bundle.go#L8793: func (rl *http2clientConnReadLoop) endStream(cs *http2clientStream) {
		h2_bundle.go#L8799: func (rl *http2clientConnReadLoop) endStreamError(cs *http2clientStream, err error) {
		h2_bundle.go#L8816: func (cs *http2clientStream) copyTrailers() {
		h2_bundle.go#L9095: 	cs     *http2clientStream
		h2_bundle.go#L9103: func (t *http2Transport) getBodyWriterState(cs *http2clientStream, body io.Reader) (s http2bodyWriterState) {