public class org.eclipse.jetty.server.EncodingHttpWriter extends org.eclipse.jetty.server.HttpWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.EncodingHttpWriter
  super_class: org.eclipse.jetty.server.HttpWriter
{
  final java.io.Writer _converter;
    descriptor: Ljava/io/Writer;
    flags: (0x0010) ACC_FINAL

  public void <init>(org.eclipse.jetty.server.HttpOutput, java.lang.String);
    descriptor: (Lorg/eclipse/jetty/server/HttpOutput;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.server.EncodingHttpWriter this
        start local 1 // org.eclipse.jetty.server.HttpOutput out
        start local 2 // java.lang.String encoding
         0: .line 35
            aload 0 /* this */
            aload 1 /* out */
            invokespecial org.eclipse.jetty.server.HttpWriter.<init>:(Lorg/eclipse/jetty/server/HttpOutput;)V
         1: .line 38
            aload 0 /* this */
            new java.io.OutputStreamWriter
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._bytes:Lorg/eclipse/jetty/util/ByteArrayOutputStream2;
            aload 2 /* encoding */
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;Ljava/lang/String;)V
            putfield org.eclipse.jetty.server.EncodingHttpWriter._converter:Ljava/io/Writer;
         2: .line 39
            goto 5
         3: .line 40
      StackMap locals: org.eclipse.jetty.server.EncodingHttpWriter org.eclipse.jetty.server.HttpOutput java.lang.String
      StackMap stack: java.io.UnsupportedEncodingException
            astore 3 /* e */
        start local 3 // java.io.UnsupportedEncodingException e
         4: .line 42
            new java.lang.RuntimeException
            dup
            aload 3 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.UnsupportedEncodingException e
         5: .line 44
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String encoding
        end local 1 // org.eclipse.jetty.server.HttpOutput out
        end local 0 // org.eclipse.jetty.server.EncodingHttpWriter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/eclipse/jetty/server/EncodingHttpWriter;
            0    6     1       out  Lorg/eclipse/jetty/server/HttpOutput;
            0    6     2  encoding  Ljava/lang/String;
            4    5     3         e  Ljava/io/UnsupportedEncodingException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.UnsupportedEncodingException
    MethodParameters:
          Name  Flags
      out       
      encoding  

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.eclipse.jetty.server.EncodingHttpWriter this
        start local 1 // char[] s
        start local 2 // int offset
        start local 3 // int length
         0: .line 49
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._out:Lorg/eclipse/jetty/server/HttpOutput;
            astore 4 /* out */
        start local 4 // org.eclipse.jetty.server.HttpOutput out
         1: .line 51
            goto 9
         2: .line 53
      StackMap locals: org.eclipse.jetty.server.HttpOutput
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._bytes:Lorg/eclipse/jetty/util/ByteArrayOutputStream2;
            invokevirtual org.eclipse.jetty.util.ByteArrayOutputStream2.reset:()V
         3: .line 54
            iload 3 /* length */
            sipush 512
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* chars */
        start local 5 // int chars
         4: .line 56
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._converter:Ljava/io/Writer;
            aload 1 /* s */
            iload 2 /* offset */
            iload 5 /* chars */
            invokevirtual java.io.Writer.write:([CII)V
         5: .line 57
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._converter:Ljava/io/Writer;
            invokevirtual java.io.Writer.flush:()V
         6: .line 58
            aload 0 /* this */
            getfield org.eclipse.jetty.server.EncodingHttpWriter._bytes:Lorg/eclipse/jetty/util/ByteArrayOutputStream2;
            aload 4 /* out */
            invokevirtual org.eclipse.jetty.util.ByteArrayOutputStream2.writeTo:(Ljava/io/OutputStream;)V
         7: .line 59
            iload 3 /* length */
            iload 5 /* chars */
            isub
            istore 3 /* length */
         8: .line 60
            iload 2 /* offset */
            iload 5 /* chars */
            iadd
            istore 2 /* offset */
        end local 5 // int chars
         9: .line 51
      StackMap locals:
      StackMap stack:
            iload 3 /* length */
            ifgt 2
        10: .line 62
            return
        end local 4 // org.eclipse.jetty.server.HttpOutput out
        end local 3 // int length
        end local 2 // int offset
        end local 1 // char[] s
        end local 0 // org.eclipse.jetty.server.EncodingHttpWriter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/eclipse/jetty/server/EncodingHttpWriter;
            0   11     1       s  [C
            0   11     2  offset  I
            0   11     3  length  I
            1   11     4     out  Lorg/eclipse/jetty/server/HttpOutput;
            4    9     5   chars  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      s       
      offset  
      length  
}
SourceFile: "EncodingHttpWriter.java"