Home | History | Annotate | Download | only in http

Lines Matching refs:PadLength

2250 	var padLength uint8
2252 if p, padLength, err = http2readByte(p); err != nil {
2269 if len(p)-int(padLength) <= 0 {
2272 hf.headerFragBuf = p[:len(p)-int(padLength)]
2294 // PadLength is the optional number of bytes of zeros to add
2296 PadLength uint8
2316 if p.PadLength != 0 {
2329 if p.PadLength != 0 {
2330 f.writeByte(p.PadLength)
2344 f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)
2518 var padLength uint8
2520 if p, padLength, err = http2readByte(p); err != nil {
2531 if int(padLength) > len(p) {
2535 pp.headerFragBuf = p[:len(p)-int(padLength)]
2556 // PadLength is the optional number of bytes of zeros to add
2558 PadLength uint8
2573 if p.PadLength != 0 {
2580 if p.PadLength != 0 {
2581 f.writeByte(p.PadLength)
2588 f.wbuf = append(f.wbuf, http2padZeros[:p.PadLength]...)