Home | History | Annotate | Download | only in http

Lines Matching refs:wbuf

1566 	wbuf []byte
1619 f.wbuf = append(f.wbuf[:0],
1634 length := len(f.wbuf) - http2frameHeaderLen
1638 _ = append(f.wbuf[:0],
1646 n, err := f.w.Write(f.wbuf)
1647 if err == nil && n != len(f.wbuf) {
1662 f.debugFramerBuf.Write(f.wbuf)
1671 func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
1673 func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
1675 func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
1678 f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
1964 f.wbuf = append(f.wbuf, byte(len(pad)))
1966 f.wbuf = append(f.wbuf, data...)
1967 f.wbuf = append(f.wbuf, pad...)
2343 f.wbuf = append(f.wbuf, p.BlockFragment...)
2344 f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)
2482 f.wbuf = append(f.wbuf, headerBlockFragment...)
2587 f.wbuf = append(f.wbuf, p.BlockFragment...)
2588 f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)