type google.golang.org/grpc/internal/transport.headerFrame

15 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L107: type headerFrame struct {
		controlbuf.go#L118: func (h *headerFrame) isTransportResponseFrame() bool {
		controlbuf.go#L415: 		hdr, ok := head.it.(*headerFrame)
		controlbuf.go#L606: func (l *loopyWriter) headerHandler(h *headerFrame) error {
		controlbuf.go#L643: 	hdr := str.itl.dequeue().(*headerFrame)
		controlbuf.go#L784: 	case *headerFrame:
		controlbuf.go#L853: 		} else if trailer, ok := str.itl.peek().(*headerFrame); ok { // the next item is trailers.
		controlbuf.go#L922: 	} else if trailer, ok := str.itl.peek().(*headerFrame); ok { // The next item is trailers.
		http2_client.go#L605: 	hdr := &headerFrame{
		http2_client.go#L649: 		h := it.(*headerFrame)
		http2_client.go#L667: 		hdrFrame := it.(*headerFrame)
		http2_server.go#L769: 	hdrFrame := it.(*headerFrame)
		http2_server.go#L817: 	success, err := t.controlBuf.executeAndPut(t.checkForHeaderListSize, &headerFrame{
		http2_server.go#L880: 	trailingHeader := &headerFrame{
		http2_server.go#L1105: func (t *http2Server) finishStream(s *Stream, rst bool, rstCode http2.ErrCode, hdr *headerFrame, eosReceived bool) {