type net/http.http2FrameWriteRequest

47 uses

	net/http (current package)
		h2_bundle.go#L3944: 		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
		h2_bundle.go#L4069: 	wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
		h2_bundle.go#L4334: 	wr  http2FrameWriteRequest // what was written (or attempted)
		h2_bundle.go#L4342: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest) {
		h2_bundle.go#L4388: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L4573: 	err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L4616: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
		h2_bundle.go#L4636: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
		h2_bundle.go#L4700: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
		h2_bundle.go#L4823: 			sc.startFrameWrite(http2FrameWriteRequest{
		h2_bundle.go#L4833: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
		h2_bundle.go#L4846: 			sc.startFrameWrite(http2FrameWriteRequest{write: http2flushFrameWriter{}})
		h2_bundle.go#L4905: 	sc.writeFrame(http2FrameWriteRequest{write: se})
		h2_bundle.go#L5022: 	sc.writeFrame(http2FrameWriteRequest{write: http2writePingAck{f}})
		h2_bundle.go#L5339: 	st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2streamError(st.id, http2ErrCodeInternal)})
		h2_bundle.go#L5708: 			sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L5749: 	if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L5772: 	sc.writeFrameFromHandler(http2FrameWriteRequest{
		h2_bundle.go#L5837: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L6465: 	sc.writeFrame(http2FrameWriteRequest{
		h2_bundle.go#L9639: 	Push(wr http2FrameWriteRequest)
		h2_bundle.go#L9644: 	Pop() (wr http2FrameWriteRequest, ok bool)
		h2_bundle.go#L9655: type http2FrameWriteRequest struct {
		h2_bundle.go#L9673: func (wr http2FrameWriteRequest) StreamID() uint32 {
		h2_bundle.go#L9689: func (wr http2FrameWriteRequest) isControl() bool {
		h2_bundle.go#L9695: func (wr http2FrameWriteRequest) DataSize() int {
		h2_bundle.go#L9712: func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
		h2_bundle.go#L9713: 	var empty http2FrameWriteRequest
		h2_bundle.go#L9734: 		consumed := http2FrameWriteRequest{
		h2_bundle.go#L9748: 		rest := http2FrameWriteRequest{
		h2_bundle.go#L9767: func (wr http2FrameWriteRequest) String() string {
		h2_bundle.go#L9779: func (wr *http2FrameWriteRequest) replyToWriter(err error) {
		h2_bundle.go#L9793: 	s []http2FrameWriteRequest
		h2_bundle.go#L9798: func (q *http2writeQueue) push(wr http2FrameWriteRequest) {
		h2_bundle.go#L9802: func (q *http2writeQueue) shift() http2FrameWriteRequest {
		h2_bundle.go#L9809: 	q.s[len(q.s)-1] = http2FrameWriteRequest{}
		h2_bundle.go#L9818: func (q *http2writeQueue) consume(n int32) (http2FrameWriteRequest, bool) {
		h2_bundle.go#L9820: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L9825: 		return http2FrameWriteRequest{}, false
		h2_bundle.go#L9841: 		q.s[i] = http2FrameWriteRequest{}
		h2_bundle.go#L10233: func (ws *http2priorityWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L10254: func (ws *http2priorityWriteScheduler) Pop() (wr http2FrameWriteRequest, ok bool) {
		h2_bundle.go#L10341: func (ws *http2randomWriteScheduler) Push(wr http2FrameWriteRequest) {
		h2_bundle.go#L10355: func (ws *http2randomWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
		h2_bundle.go#L10370: 	return http2FrameWriteRequest{}, false