golang.org/x/net/http2.Framer.wbuf (field)

32 uses

	golang.org/x/net/http2 (current package)
		frame.go#L286: 	wbuf []byte
		frame.go#L339: 	f.wbuf = append(f.wbuf[:0],
		frame.go#L354: 	length := len(f.wbuf) - frameHeaderLen
		frame.go#L358: 	_ = append(f.wbuf[:0],
		frame.go#L366: 	n, err := f.w.Write(f.wbuf)
		frame.go#L367: 	if err == nil && n != len(f.wbuf) {
		frame.go#L382: 	f.debugFramerBuf.Write(f.wbuf)
		frame.go#L391: func (f *Framer) writeByte(v byte)     { f.wbuf = append(f.wbuf, v) }
		frame.go#L392: func (f *Framer) writeBytes(v []byte)  { f.wbuf = append(f.wbuf, v...) }
		frame.go#L393: func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
		frame.go#L395: 	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
		frame.go#L681: 		f.wbuf = append(f.wbuf, byte(len(pad)))
		frame.go#L683: 	f.wbuf = append(f.wbuf, data...)
		frame.go#L684: 	f.wbuf = append(f.wbuf, pad...)
		frame.go#L1095: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1096: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)
		frame.go#L1234: 	f.wbuf = append(f.wbuf, headerBlockFragment...)
		frame.go#L1339: 	f.wbuf = append(f.wbuf, p.BlockFragment...)
		frame.go#L1340: 	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...)