net/http.http2Framer.wbuf (field)

32 uses

	net/http (current package)
		h2_bundle.go#L1526: 	wbuf []byte
		h2_bundle.go#L1579: 	f.wbuf = append(f.wbuf[:0],
		h2_bundle.go#L1594: 	length := len(f.wbuf) - http2frameHeaderLen
		h2_bundle.go#L1598: 	_ = append(f.wbuf[:0],
		h2_bundle.go#L1606: 	n, err := f.w.Write(f.wbuf)
		h2_bundle.go#L1607: 	if err == nil && n != len(f.wbuf) {
		h2_bundle.go#L1622: 	f.debugFramerBuf.Write(f.wbuf)
		h2_bundle.go#L1631: func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
		h2_bundle.go#L1633: func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
		h2_bundle.go#L1635: func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
		h2_bundle.go#L1638: 	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
		h2_bundle.go#L1924: 		f.wbuf = append(f.wbuf, byte(len(pad)))
		h2_bundle.go#L1926: 	f.wbuf = append(f.wbuf, data...)
		h2_bundle.go#L1927: 	f.wbuf = append(f.wbuf, pad...)
		h2_bundle.go#L2338: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		h2_bundle.go#L2339: 	f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)
		h2_bundle.go#L2477: 	f.wbuf = append(f.wbuf, headerBlockFragment...)
		h2_bundle.go#L2582: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		h2_bundle.go#L2583: 	f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)