Lines Matching refs:writeData
1920 // WriteData writes a DATA frame.
1925 func (f *http2Framer) WriteData(streamID uint32, endStream bool, data []byte) error {
1929 // WriteData writes a DATA frame with optional padding.
7623 err = cc.fr.WriteData(cs.ID, sentEnd, data)
7643 // WriteData frames above get a flush. So we're done.
7671 err = cc.fr.WriteData(cs.ID, true, nil)
8943 return fmt.Sprintf("writeData(stream=%d, p=%d, endStream=%v)", w.streamID, len(w.p), w.endStream)
8947 return ctx.Framer().WriteData(w.streamID, w.endStream, w.p)