final class okhttp3.internal.http2.Http2Writer implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: okhttp3.internal.http2.Http2Writer
  super_class: java.lang.Object
{
  private static final java.util.logging.Logger logger;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final okio.BufferedSink sink;
    descriptor: Lokio/BufferedSink;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean client;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final okio.Buffer hpackBuffer;
    descriptor: Lokio/Buffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int maxFrameSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  final okhttp3.internal.http2.Hpack$Writer hpackWriter;
    descriptor: Lokhttp3/internal/http2/Hpack$Writer;
    flags: (0x0010) ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 47
            ldc Lokhttp3/internal/http2/Http2;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
            putstatic okhttp3.internal.http2.Http2Writer.logger:Ljava/util/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(okio.BufferedSink, boolean);
    descriptor: (Lokio/BufferedSink;Z)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // okio.BufferedSink sink
        start local 2 // boolean client
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            aload 1 /* sink */
            putfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
         2: .line 59
            aload 0 /* this */
            iload 2 /* client */
            putfield okhttp3.internal.http2.Http2Writer.client:Z
         3: .line 60
            aload 0 /* this */
            new okio.Buffer
            dup
            invokespecial okio.Buffer.<init>:()V
            putfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
         4: .line 61
            aload 0 /* this */
            new okhttp3.internal.http2.Hpack$Writer
            dup
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            invokespecial okhttp3.internal.http2.Hpack$Writer.<init>:(Lokio/Buffer;)V
            putfield okhttp3.internal.http2.Http2Writer.hpackWriter:Lokhttp3/internal/http2/Hpack$Writer;
         5: .line 62
            aload 0 /* this */
            sipush 16384
            putfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
         6: .line 63
            return
        end local 2 // boolean client
        end local 1 // okio.BufferedSink sink
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lokhttp3/internal/http2/Http2Writer;
            0    7     1    sink  Lokio/BufferedSink;
            0    7     2  client  Z
    MethodParameters:
        Name  Flags
      sink    
      client  

  public synchronized void connectionPreface();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // okhttp3.internal.http2.Http2Writer this
         0: .line 66
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.client:Z
            ifne 2
            return
         2: .line 68
      StackMap locals:
      StackMap stack:
            getstatic okhttp3.internal.http2.Http2Writer.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 4
         3: .line 69
            getstatic okhttp3.internal.http2.Http2Writer.logger:Ljava/util/logging/Logger;
            ldc ">> CONNECTION %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            getstatic okhttp3.internal.http2.Http2.CONNECTION_PREFACE:Lokio/ByteString;
            invokevirtual okio.ByteString.hex:()Ljava/lang/String;
            aastore
            invokestatic okhttp3.internal.Util.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
         4: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            getstatic okhttp3.internal.http2.Http2.CONNECTION_PREFACE:Lokio/ByteString;
            invokevirtual okio.ByteString.toByteArray:()[B
            invokeinterface okio.BufferedSink.write:([B)Lokio/BufferedSink;
            pop
         5: .line 72
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
         6: .line 73
            return
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lokhttp3/internal/http2/Http2Writer;
    Exceptions:
      throws java.io.IOException

  public synchronized void applyAndAckSettings(okhttp3.internal.http2.Settings);
    descriptor: (Lokhttp3/internal/http2/Settings;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // okhttp3.internal.http2.Settings peerSettings
         0: .line 77
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* peerSettings */
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            invokevirtual okhttp3.internal.http2.Settings.getMaxFrameSize:(I)I
            putfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
         2: .line 79
            aload 1 /* peerSettings */
            invokevirtual okhttp3.internal.http2.Settings.getHeaderTableSize:()I
            iconst_m1
            if_icmpeq 4
         3: .line 80
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackWriter:Lokhttp3/internal/http2/Hpack$Writer;
            aload 1 /* peerSettings */
            invokevirtual okhttp3.internal.http2.Settings.getHeaderTableSize:()I
            invokevirtual okhttp3.internal.http2.Hpack$Writer.setHeaderTableSizeSetting:(I)V
         4: .line 82
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* length */
        start local 2 // int length
         5: .line 83
            iconst_4
            istore 3 /* type */
        start local 3 // byte type
         6: .line 84
            iconst_1
            istore 4 /* flags */
        start local 4 // byte flags
         7: .line 85
            iconst_0
            istore 5 /* streamId */
        start local 5 // int streamId
         8: .line 86
            aload 0 /* this */
            iload 5 /* streamId */
            iload 2 /* length */
            iload 3 /* type */
            iload 4 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         9: .line 87
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
        10: .line 88
            return
        end local 5 // int streamId
        end local 4 // byte flags
        end local 3 // byte type
        end local 2 // int length
        end local 1 // okhttp3.internal.http2.Settings peerSettings
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lokhttp3/internal/http2/Http2Writer;
            0   11     1  peerSettings  Lokhttp3/internal/http2/Settings;
            5   11     2        length  I
            6   11     3          type  B
            7   11     4         flags  B
            8   11     5      streamId  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      peerSettings  

  public synchronized void pushPromise(int, int, java.util.List<okhttp3.internal.http2.Header>);
    descriptor: (IILjava/util/List;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // int promisedStreamId
        start local 3 // java.util.List requestHeaders
         0: .line 105
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 106
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackWriter:Lokhttp3/internal/http2/Hpack$Writer;
            aload 3 /* requestHeaders */
            invokevirtual okhttp3.internal.http2.Hpack$Writer.writeHeaders:(Ljava/util/List;)V
         2: .line 108
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            invokevirtual okio.Buffer.size:()J
            lstore 4 /* byteCount */
        start local 4 // long byteCount
         3: .line 109
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            iconst_4
            isub
            i2l
            lload 4 /* byteCount */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 6 /* length */
        start local 6 // int length
         4: .line 110
            iconst_5
            istore 7 /* type */
        start local 7 // byte type
         5: .line 111
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lcmp
            ifne 6
            iconst_4
            goto 7
      StackMap locals: long int int
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 8 /* flags */
        start local 8 // byte flags
         8: .line 112
            aload 0 /* this */
            iload 1 /* streamId */
            iload 6 /* length */
            iconst_4
            iadd
            iload 7 /* type */
            iload 8 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         9: .line 113
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 2 /* promisedStreamId */
            ldc 2147483647
            iand
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
        10: .line 114
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            iload 6 /* length */
            i2l
            invokeinterface okio.BufferedSink.write:(Lokio/Buffer;J)V
        11: .line 116
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lcmp
            ifle 12
            aload 0 /* this */
            iload 1 /* streamId */
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lsub
            invokevirtual okhttp3.internal.http2.Http2Writer.writeContinuationFrames:(IJ)V
        12: .line 117
      StackMap locals: int
      StackMap stack:
            return
        end local 8 // byte flags
        end local 7 // byte type
        end local 6 // int length
        end local 4 // long byteCount
        end local 3 // java.util.List requestHeaders
        end local 2 // int promisedStreamId
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   13     0              this  Lokhttp3/internal/http2/Http2Writer;
            0   13     1          streamId  I
            0   13     2  promisedStreamId  I
            0   13     3    requestHeaders  Ljava/util/List<Lokhttp3/internal/http2/Header;>;
            3   13     4         byteCount  J
            4   13     6            length  I
            5   13     7              type  B
            8   13     8             flags  B
    Exceptions:
      throws java.io.IOException
    Signature: (IILjava/util/List<Lokhttp3/internal/http2/Header;>;)V
    MethodParameters:
                  Name  Flags
      streamId          
      promisedStreamId  
      requestHeaders    

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // okhttp3.internal.http2.Http2Writer this
         0: .line 120
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
         2: .line 122
            return
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lokhttp3/internal/http2/Http2Writer;
    Exceptions:
      throws java.io.IOException

  public synchronized void synStream(boolean, int, int, java.util.List<okhttp3.internal.http2.Header>);
    descriptor: (ZIILjava/util/List;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // boolean outFinished
        start local 2 // int streamId
        start local 3 // int associatedStreamId
        start local 4 // java.util.List headerBlock
         0: .line 126
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* outFinished */
            iload 2 /* streamId */
            aload 4 /* headerBlock */
            invokevirtual okhttp3.internal.http2.Http2Writer.headers:(ZILjava/util/List;)V
         2: .line 128
            return
        end local 4 // java.util.List headerBlock
        end local 3 // int associatedStreamId
        end local 2 // int streamId
        end local 1 // boolean outFinished
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lokhttp3/internal/http2/Http2Writer;
            0    3     1         outFinished  Z
            0    3     2            streamId  I
            0    3     3  associatedStreamId  I
            0    3     4         headerBlock  Ljava/util/List<Lokhttp3/internal/http2/Header;>;
    Exceptions:
      throws java.io.IOException
    Signature: (ZIILjava/util/List<Lokhttp3/internal/http2/Header;>;)V
    MethodParameters:
                    Name  Flags
      outFinished         
      streamId            
      associatedStreamId  
      headerBlock         

  public synchronized void synReply(boolean, int, java.util.List<okhttp3.internal.http2.Header>);
    descriptor: (ZILjava/util/List;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // boolean outFinished
        start local 2 // int streamId
        start local 3 // java.util.List headerBlock
         0: .line 132
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* outFinished */
            iload 2 /* streamId */
            aload 3 /* headerBlock */
            invokevirtual okhttp3.internal.http2.Http2Writer.headers:(ZILjava/util/List;)V
         2: .line 134
            return
        end local 3 // java.util.List headerBlock
        end local 2 // int streamId
        end local 1 // boolean outFinished
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lokhttp3/internal/http2/Http2Writer;
            0    3     1  outFinished  Z
            0    3     2     streamId  I
            0    3     3  headerBlock  Ljava/util/List<Lokhttp3/internal/http2/Header;>;
    Exceptions:
      throws java.io.IOException
    Signature: (ZILjava/util/List<Lokhttp3/internal/http2/Header;>;)V
    MethodParameters:
             Name  Flags
      outFinished  
      streamId     
      headerBlock  

  public synchronized void headers(int, java.util.List<okhttp3.internal.http2.Header>);
    descriptor: (ILjava/util/List;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // java.util.List headerBlock
         0: .line 138
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            iload 1 /* streamId */
            aload 2 /* headerBlock */
            invokevirtual okhttp3.internal.http2.Http2Writer.headers:(ZILjava/util/List;)V
         2: .line 140
            return
        end local 2 // java.util.List headerBlock
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lokhttp3/internal/http2/Http2Writer;
            0    3     1     streamId  I
            0    3     2  headerBlock  Ljava/util/List<Lokhttp3/internal/http2/Header;>;
    Exceptions:
      throws java.io.IOException
    Signature: (ILjava/util/List<Lokhttp3/internal/http2/Header;>;)V
    MethodParameters:
             Name  Flags
      streamId     
      headerBlock  

  public synchronized void rstStream(int, okhttp3.internal.http2.ErrorCode);
    descriptor: (ILokhttp3/internal/http2/ErrorCode;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // okhttp3.internal.http2.ErrorCode errorCode
         0: .line 144
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 145
      StackMap locals:
      StackMap stack:
            aload 2 /* errorCode */
            getfield okhttp3.internal.http2.ErrorCode.httpCode:I
            iconst_m1
            if_icmpne 2
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 147
      StackMap locals:
      StackMap stack:
            iconst_4
            istore 3 /* length */
        start local 3 // int length
         3: .line 148
            iconst_3
            istore 4 /* type */
        start local 4 // byte type
         4: .line 149
            iconst_0
            istore 5 /* flags */
        start local 5 // byte flags
         5: .line 150
            aload 0 /* this */
            iload 1 /* streamId */
            iload 3 /* length */
            iload 4 /* type */
            iload 5 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         6: .line 151
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 2 /* errorCode */
            getfield okhttp3.internal.http2.ErrorCode.httpCode:I
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
         7: .line 152
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
         8: .line 153
            return
        end local 5 // byte flags
        end local 4 // byte type
        end local 3 // int length
        end local 2 // okhttp3.internal.http2.ErrorCode errorCode
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lokhttp3/internal/http2/Http2Writer;
            0    9     1   streamId  I
            0    9     2  errorCode  Lokhttp3/internal/http2/ErrorCode;
            3    9     3     length  I
            4    9     4       type  B
            5    9     5      flags  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      streamId   
      errorCode  

  public int maxDataLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // okhttp3.internal.http2.Http2Writer this
         0: .line 157
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            ireturn
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lokhttp3/internal/http2/Http2Writer;

  public synchronized void data(boolean, int, okio.Buffer, int);
    descriptor: (ZILokio/Buffer;I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // boolean outFinished
        start local 2 // int streamId
        start local 3 // okio.Buffer source
        start local 4 // int byteCount
         0: .line 170
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 171
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* flags */
        start local 5 // byte flags
         2: .line 172
            iload 1 /* outFinished */
            ifeq 3
            iload 5 /* flags */
            iconst_1
            ior
            i2b
            istore 5 /* flags */
         3: .line 173
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* streamId */
            iload 5 /* flags */
            aload 3 /* source */
            iload 4 /* byteCount */
            invokevirtual okhttp3.internal.http2.Http2Writer.dataFrame:(IBLokio/Buffer;I)V
         4: .line 174
            return
        end local 5 // byte flags
        end local 4 // int byteCount
        end local 3 // okio.Buffer source
        end local 2 // int streamId
        end local 1 // boolean outFinished
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lokhttp3/internal/http2/Http2Writer;
            0    5     1  outFinished  Z
            0    5     2     streamId  I
            0    5     3       source  Lokio/Buffer;
            0    5     4    byteCount  I
            2    5     5        flags  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      outFinished  
      streamId     
      source       
      byteCount    

  void dataFrame(int, byte, okio.Buffer, int);
    descriptor: (IBLokio/Buffer;I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // byte flags
        start local 3 // okio.Buffer buffer
        start local 4 // int byteCount
         0: .line 177
            iconst_0
            istore 5 /* type */
        start local 5 // byte type
         1: .line 178
            aload 0 /* this */
            iload 1 /* streamId */
            iload 4 /* byteCount */
            iload 5 /* type */
            iload 2 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         2: .line 179
            iload 4 /* byteCount */
            ifle 4
         3: .line 180
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 3 /* buffer */
            iload 4 /* byteCount */
            i2l
            invokeinterface okio.BufferedSink.write:(Lokio/Buffer;J)V
         4: .line 182
      StackMap locals: int
      StackMap stack:
            return
        end local 5 // byte type
        end local 4 // int byteCount
        end local 3 // okio.Buffer buffer
        end local 2 // byte flags
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lokhttp3/internal/http2/Http2Writer;
            0    5     1   streamId  I
            0    5     2      flags  B
            0    5     3     buffer  Lokio/Buffer;
            0    5     4  byteCount  I
            1    5     5       type  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      streamId   
      flags      
      buffer     
      byteCount  

  public synchronized void settings(okhttp3.internal.http2.Settings);
    descriptor: (Lokhttp3/internal/http2/Settings;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // okhttp3.internal.http2.Settings settings
         0: .line 186
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 187
      StackMap locals:
      StackMap stack:
            aload 1 /* settings */
            invokevirtual okhttp3.internal.http2.Settings.size:()I
            bipush 6
            imul
            istore 2 /* length */
        start local 2 // int length
         2: .line 188
            iconst_4
            istore 3 /* type */
        start local 3 // byte type
         3: .line 189
            iconst_0
            istore 4 /* flags */
        start local 4 // byte flags
         4: .line 190
            iconst_0
            istore 5 /* streamId */
        start local 5 // int streamId
         5: .line 191
            aload 0 /* this */
            iload 5 /* streamId */
            iload 2 /* length */
            iload 3 /* type */
            iload 4 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         6: .line 192
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 18
         8: .line 193
      StackMap locals: okhttp3.internal.http2.Http2Writer okhttp3.internal.http2.Settings int int int int int
      StackMap stack:
            aload 1 /* settings */
            iload 6 /* i */
            invokevirtual okhttp3.internal.http2.Settings.isSet:(I)Z
            ifne 9
            goto 17
         9: .line 194
      StackMap locals:
      StackMap stack:
            iload 6 /* i */
            istore 7 /* id */
        start local 7 // int id
        10: .line 195
            iload 7 /* id */
            iconst_4
            if_icmpne 13
        11: .line 196
            iconst_3
            istore 7 /* id */
        12: .line 197
            goto 15
      StackMap locals: int
      StackMap stack:
        13: iload 7 /* id */
            bipush 7
            if_icmpne 15
        14: .line 198
            iconst_4
            istore 7 /* id */
        15: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 7 /* id */
            invokeinterface okio.BufferedSink.writeShort:(I)Lokio/BufferedSink;
            pop
        16: .line 201
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 1 /* settings */
            iload 6 /* i */
            invokevirtual okhttp3.internal.http2.Settings.get:(I)I
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
        end local 7 // int id
        17: .line 192
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 6 /* i */
            bipush 10
            if_icmplt 8
        end local 6 // int i
        19: .line 203
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
        20: .line 204
            return
        end local 5 // int streamId
        end local 4 // byte flags
        end local 3 // byte type
        end local 2 // int length
        end local 1 // okhttp3.internal.http2.Settings settings
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lokhttp3/internal/http2/Http2Writer;
            0   21     1  settings  Lokhttp3/internal/http2/Settings;
            2   21     2    length  I
            3   21     3      type  B
            4   21     4     flags  B
            5   21     5  streamId  I
            7   19     6         i  I
           10   17     7        id  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      settings  

  public synchronized void ping(boolean, int, int);
    descriptor: (ZII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // boolean ack
        start local 2 // int payload1
        start local 3 // int payload2
         0: .line 211
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 212
      StackMap locals:
      StackMap stack:
            bipush 8
            istore 4 /* length */
        start local 4 // int length
         2: .line 213
            bipush 6
            istore 5 /* type */
        start local 5 // byte type
         3: .line 214
            iload 1 /* ack */
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: int int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 6 /* flags */
        start local 6 // byte flags
         6: .line 215
            iconst_0
            istore 7 /* streamId */
        start local 7 // int streamId
         7: .line 216
            aload 0 /* this */
            iload 7 /* streamId */
            iload 4 /* length */
            iload 5 /* type */
            iload 6 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         8: .line 217
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 2 /* payload1 */
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
         9: .line 218
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 3 /* payload2 */
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
        10: .line 219
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
        11: .line 220
            return
        end local 7 // int streamId
        end local 6 // byte flags
        end local 5 // byte type
        end local 4 // int length
        end local 3 // int payload2
        end local 2 // int payload1
        end local 1 // boolean ack
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Lokhttp3/internal/http2/Http2Writer;
            0   12     1       ack  Z
            0   12     2  payload1  I
            0   12     3  payload2  I
            2   12     4    length  I
            3   12     5      type  B
            6   12     6     flags  B
            7   12     7  streamId  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      ack       
      payload1  
      payload2  

  public synchronized void goAway(int, okhttp3.internal.http2.ErrorCode, byte[]);
    descriptor: (ILokhttp3/internal/http2/ErrorCode;[B)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int lastGoodStreamId
        start local 2 // okhttp3.internal.http2.ErrorCode errorCode
        start local 3 // byte[] debugData
         0: .line 232
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 233
      StackMap locals:
      StackMap stack:
            aload 2 /* errorCode */
            getfield okhttp3.internal.http2.ErrorCode.httpCode:I
            iconst_m1
            if_icmpne 2
            ldc "errorCode.httpCode == -1"
            iconst_0
            anewarray java.lang.Object
            invokestatic okhttp3.internal.http2.Http2.illegalArgument:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
         2: .line 234
      StackMap locals:
      StackMap stack:
            bipush 8
            aload 3 /* debugData */
            arraylength
            iadd
            istore 4 /* length */
        start local 4 // int length
         3: .line 235
            bipush 7
            istore 5 /* type */
        start local 5 // byte type
         4: .line 236
            iconst_0
            istore 6 /* flags */
        start local 6 // byte flags
         5: .line 237
            iconst_0
            istore 7 /* streamId */
        start local 7 // int streamId
         6: .line 238
            aload 0 /* this */
            iload 7 /* streamId */
            iload 4 /* length */
            iload 5 /* type */
            iload 6 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         7: .line 239
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 1 /* lastGoodStreamId */
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
         8: .line 240
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 2 /* errorCode */
            getfield okhttp3.internal.http2.ErrorCode.httpCode:I
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
         9: .line 241
            aload 3 /* debugData */
            arraylength
            ifle 11
        10: .line 242
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 3 /* debugData */
            invokeinterface okio.BufferedSink.write:([B)Lokio/BufferedSink;
            pop
        11: .line 244
      StackMap locals: okhttp3.internal.http2.Http2Writer int okhttp3.internal.http2.ErrorCode byte[] int int int int
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
        12: .line 245
            return
        end local 7 // int streamId
        end local 6 // byte flags
        end local 5 // byte type
        end local 4 // int length
        end local 3 // byte[] debugData
        end local 2 // okhttp3.internal.http2.ErrorCode errorCode
        end local 1 // int lastGoodStreamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   13     0              this  Lokhttp3/internal/http2/Http2Writer;
            0   13     1  lastGoodStreamId  I
            0   13     2         errorCode  Lokhttp3/internal/http2/ErrorCode;
            0   13     3         debugData  [B
            3   13     4            length  I
            4   13     5              type  B
            5   13     6             flags  B
            6   13     7          streamId  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      lastGoodStreamId  
      errorCode         
      debugData         

  public synchronized void windowUpdate(int, long);
    descriptor: (IJ)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // long windowSizeIncrement
         0: .line 252
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 253
      StackMap locals:
      StackMap stack:
            lload 2 /* windowSizeIncrement */
            lconst_0
            lcmp
            ifeq 2
            lload 2 /* windowSizeIncrement */
            ldc 2147483647
            lcmp
            ifle 5
         2: .line 254
      StackMap locals:
      StackMap stack:
            ldc "windowSizeIncrement == 0 || windowSizeIncrement > 0x7fffffffL: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
         3: .line 255
            lload 2 /* windowSizeIncrement */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
         4: .line 254
            invokestatic okhttp3.internal.http2.Http2.illegalArgument:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
         5: .line 257
      StackMap locals:
      StackMap stack:
            iconst_4
            istore 4 /* length */
        start local 4 // int length
         6: .line 258
            bipush 8
            istore 5 /* type */
        start local 5 // byte type
         7: .line 259
            iconst_0
            istore 6 /* flags */
        start local 6 // byte flags
         8: .line 260
            aload 0 /* this */
            iload 1 /* streamId */
            iload 4 /* length */
            iload 5 /* type */
            iload 6 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         9: .line 261
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            lload 2 /* windowSizeIncrement */
            l2i
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
        10: .line 262
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.flush:()V
        11: .line 263
            return
        end local 6 // byte flags
        end local 5 // byte type
        end local 4 // int length
        end local 2 // long windowSizeIncrement
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   12     0                 this  Lokhttp3/internal/http2/Http2Writer;
            0   12     1             streamId  I
            0   12     2  windowSizeIncrement  J
            6   12     4               length  I
            7   12     5                 type  B
            8   12     6                flags  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                     Name  Flags
      streamId             
      windowSizeIncrement  

  public void frameHeader(int, int, byte, byte);
    descriptor: (IIBB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // int length
        start local 3 // byte type
        start local 4 // byte flags
         0: .line 266
            getstatic okhttp3.internal.http2.Http2Writer.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINE:Ljava/util/logging/Level;
            invokevirtual java.util.logging.Logger.isLoggable:(Ljava/util/logging/Level;)Z
            ifeq 1
            getstatic okhttp3.internal.http2.Http2Writer.logger:Ljava/util/logging/Logger;
            iconst_0
            iload 1 /* streamId */
            iload 2 /* length */
            iload 3 /* type */
            iload 4 /* flags */
            invokestatic okhttp3.internal.http2.Http2.frameLog:(ZIIBB)Ljava/lang/String;
            invokevirtual java.util.logging.Logger.fine:(Ljava/lang/String;)V
         1: .line 267
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            if_icmple 3
         2: .line 268
            ldc "FRAME_SIZE_ERROR length > %d: %d"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iload 2 /* length */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic okhttp3.internal.http2.Http2.illegalArgument:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
         3: .line 270
      StackMap locals:
      StackMap stack:
            iload 1 /* streamId */
            ldc -2147483648
            iand
            ifeq 4
            ldc "reserved bit set: %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* streamId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic okhttp3.internal.http2.Http2.illegalArgument:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/IllegalArgumentException;
            athrow
         4: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 2 /* length */
            invokestatic okhttp3.internal.http2.Http2Writer.writeMedium:(Lokio/BufferedSink;I)V
         5: .line 272
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 3 /* type */
            sipush 255
            iand
            invokeinterface okio.BufferedSink.writeByte:(I)Lokio/BufferedSink;
            pop
         6: .line 273
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 4 /* flags */
            sipush 255
            iand
            invokeinterface okio.BufferedSink.writeByte:(I)Lokio/BufferedSink;
            pop
         7: .line 274
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            iload 1 /* streamId */
            ldc 2147483647
            iand
            invokeinterface okio.BufferedSink.writeInt:(I)Lokio/BufferedSink;
            pop
         8: .line 275
            return
        end local 4 // byte flags
        end local 3 // byte type
        end local 2 // int length
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lokhttp3/internal/http2/Http2Writer;
            0    9     1  streamId  I
            0    9     2    length  I
            0    9     3      type  B
            0    9     4     flags  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      streamId  
      length    
      type      
      flags     

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // okhttp3.internal.http2.Http2Writer this
         0: .line 278
            aload 0 /* this */
            iconst_1
            putfield okhttp3.internal.http2.Http2Writer.closed:Z
         1: .line 279
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            invokeinterface okio.BufferedSink.close:()V
         2: .line 280
            return
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lokhttp3/internal/http2/Http2Writer;
    Exceptions:
      throws java.io.IOException

  private static void writeMedium(okio.BufferedSink, int);
    descriptor: (Lokio/BufferedSink;I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // okio.BufferedSink sink
        start local 1 // int i
         0: .line 283
            aload 0 /* sink */
            iload 1 /* i */
            bipush 16
            iushr
            sipush 255
            iand
            invokeinterface okio.BufferedSink.writeByte:(I)Lokio/BufferedSink;
            pop
         1: .line 284
            aload 0 /* sink */
            iload 1 /* i */
            bipush 8
            iushr
            sipush 255
            iand
            invokeinterface okio.BufferedSink.writeByte:(I)Lokio/BufferedSink;
            pop
         2: .line 285
            aload 0 /* sink */
            iload 1 /* i */
            sipush 255
            iand
            invokeinterface okio.BufferedSink.writeByte:(I)Lokio/BufferedSink;
            pop
         3: .line 286
            return
        end local 1 // int i
        end local 0 // okio.BufferedSink sink
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  sink  Lokio/BufferedSink;
            0    4     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      sink  
      i     

  private void writeContinuationFrames(int, long);
    descriptor: (IJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // int streamId
        start local 2 // long byteCount
         0: .line 289
            goto 7
         1: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            i2l
            lload 2 /* byteCount */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 4 /* length */
        start local 4 // int length
         2: .line 291
            lload 2 /* byteCount */
            iload 4 /* length */
            i2l
            lsub
            lstore 2 /* byteCount */
         3: .line 292
            aload 0 /* this */
            iload 1 /* streamId */
            iload 4 /* length */
            bipush 9
            lload 2 /* byteCount */
            lconst_0
            lcmp
            ifne 4
            iconst_4
            goto 5
      StackMap locals: okhttp3.internal.http2.Http2Writer int long int
      StackMap stack: okhttp3.internal.http2.Http2Writer int int int
         4: iconst_0
      StackMap locals: okhttp3.internal.http2.Http2Writer int long int
      StackMap stack: okhttp3.internal.http2.Http2Writer int int int int
         5: invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
         6: .line 293
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            iload 4 /* length */
            i2l
            invokeinterface okio.BufferedSink.write:(Lokio/Buffer;J)V
        end local 4 // int length
         7: .line 289
      StackMap locals:
      StackMap stack:
            lload 2 /* byteCount */
            lconst_0
            lcmp
            ifgt 1
         8: .line 295
            return
        end local 2 // long byteCount
        end local 1 // int streamId
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lokhttp3/internal/http2/Http2Writer;
            0    9     1   streamId  I
            0    9     2  byteCount  J
            2    7     4     length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      streamId   
      byteCount  

  void headers(boolean, int, java.util.List<okhttp3.internal.http2.Header>);
    descriptor: (ZILjava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // okhttp3.internal.http2.Http2Writer this
        start local 1 // boolean outFinished
        start local 2 // int streamId
        start local 3 // java.util.List headerBlock
         0: .line 298
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.closed:Z
            ifeq 1
            new java.io.IOException
            dup
            ldc "closed"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 299
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackWriter:Lokhttp3/internal/http2/Hpack$Writer;
            aload 3 /* headerBlock */
            invokevirtual okhttp3.internal.http2.Hpack$Writer.writeHeaders:(Ljava/util/List;)V
         2: .line 301
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            invokevirtual okio.Buffer.size:()J
            lstore 4 /* byteCount */
        start local 4 // long byteCount
         3: .line 302
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.maxFrameSize:I
            i2l
            lload 4 /* byteCount */
            invokestatic java.lang.Math.min:(JJ)J
            l2i
            istore 6 /* length */
        start local 6 // int length
         4: .line 303
            iconst_1
            istore 7 /* type */
        start local 7 // byte type
         5: .line 304
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lcmp
            ifne 6
            iconst_4
            goto 7
      StackMap locals: long int int
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 8 /* flags */
        start local 8 // byte flags
         8: .line 305
            iload 1 /* outFinished */
            ifeq 9
            iload 8 /* flags */
            iconst_1
            ior
            i2b
            istore 8 /* flags */
         9: .line 306
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* streamId */
            iload 6 /* length */
            iload 7 /* type */
            iload 8 /* flags */
            invokevirtual okhttp3.internal.http2.Http2Writer.frameHeader:(IIBB)V
        10: .line 307
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.sink:Lokio/BufferedSink;
            aload 0 /* this */
            getfield okhttp3.internal.http2.Http2Writer.hpackBuffer:Lokio/Buffer;
            iload 6 /* length */
            i2l
            invokeinterface okio.BufferedSink.write:(Lokio/Buffer;J)V
        11: .line 309
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lcmp
            ifle 12
            aload 0 /* this */
            iload 2 /* streamId */
            lload 4 /* byteCount */
            iload 6 /* length */
            i2l
            lsub
            invokevirtual okhttp3.internal.http2.Http2Writer.writeContinuationFrames:(IJ)V
        12: .line 310
      StackMap locals:
      StackMap stack:
            return
        end local 8 // byte flags
        end local 7 // byte type
        end local 6 // int length
        end local 4 // long byteCount
        end local 3 // java.util.List headerBlock
        end local 2 // int streamId
        end local 1 // boolean outFinished
        end local 0 // okhttp3.internal.http2.Http2Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lokhttp3/internal/http2/Http2Writer;
            0   13     1  outFinished  Z
            0   13     2     streamId  I
            0   13     3  headerBlock  Ljava/util/List<Lokhttp3/internal/http2/Header;>;
            3   13     4    byteCount  J
            4   13     6       length  I
            5   13     7         type  B
            8   13     8        flags  B
    Exceptions:
      throws java.io.IOException
    Signature: (ZILjava/util/List<Lokhttp3/internal/http2/Header;>;)V
    MethodParameters:
             Name  Flags
      outFinished  
      streamId     
      headerBlock  
}
SourceFile: "Http2Writer.java"
InnerClasses:
  final Writer = okhttp3.internal.http2.Hpack$Writer of okhttp3.internal.http2.Hpack