public class sun.rmi.log.LogInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.rmi.log.LogInputStream
  super_class: java.io.InputStream
{
  private java.io.InputStream in;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(java.io.InputStream, int);
    descriptor: (Ljava/io/InputStream;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // sun.rmi.log.LogInputStream this
        start local 1 // java.io.InputStream in
        start local 2 // int length
         0: .line 42
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* in */
            putfield sun.rmi.log.LogInputStream.in:Ljava/io/InputStream;
         2: .line 44
            aload 0 /* this */
            iload 2 /* length */
            putfield sun.rmi.log.LogInputStream.length:I
         3: .line 45
            return
        end local 2 // int length
        end local 1 // java.io.InputStream in
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lsun/rmi/log/LogInputStream;
            0    4     1      in  Ljava/io/InputStream;
            0    4     2  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      in      
      length  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.rmi.log.LogInputStream this
         0: .line 55
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            ifne 2
         1: .line 56
            iconst_m1
            ireturn
         2: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            istore 1 /* c */
        start local 1 // int c
         3: .line 58
            aload 0 /* this */
            iload 1 /* c */
            iconst_m1
            if_icmpeq 4
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            iconst_1
            isub
            goto 5
      StackMap locals: sun.rmi.log.LogInputStream int
      StackMap stack: sun.rmi.log.LogInputStream
         4: iconst_0
      StackMap locals: sun.rmi.log.LogInputStream int
      StackMap stack: sun.rmi.log.LogInputStream int
         5: putfield sun.rmi.log.LogInputStream.length:I
         6: .line 59
            iload 1 /* c */
            ireturn
        end local 1 // int c
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/rmi/log/LogInputStream;
            3    7     1     c  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.rmi.log.LogInputStream this
        start local 1 // byte[] b
         0: .line 71
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual sun.rmi.log.LogInputStream.read:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/rmi/log/LogInputStream;
            0    1     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.rmi.log.LogInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 85
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            ifne 2
         1: .line 86
            iconst_m1
            ireturn
         2: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            iload 3 /* len */
            if_icmpge 3
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            goto 4
      StackMap locals:
      StackMap stack:
         3: iload 3 /* len */
      StackMap locals:
      StackMap stack: int
         4: istore 3 /* len */
         5: .line 88
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.in:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         6: .line 89
            aload 0 /* this */
            iload 4 /* n */
            iconst_m1
            if_icmpeq 7
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            iload 4 /* n */
            isub
            goto 8
      StackMap locals: sun.rmi.log.LogInputStream byte[] int int int
      StackMap stack: sun.rmi.log.LogInputStream
         7: iconst_0
      StackMap locals: sun.rmi.log.LogInputStream byte[] int int int
      StackMap stack: sun.rmi.log.LogInputStream int
         8: putfield sun.rmi.log.LogInputStream.length:I
         9: .line 90
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/rmi/log/LogInputStream;
            0   10     1     b  [B
            0   10     2   off  I
            0   10     3   len  I
            6   10     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.rmi.log.LogInputStream this
        start local 1 // long n
         0: .line 100
            lload 1 /* n */
            ldc 2147483647
            lcmp
            ifle 2
         1: .line 101
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Too many bytes to skip - "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 1 /* n */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            ifne 4
         3: .line 103
            lconst_0
            lreturn
         4: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            i2l
            lload 1 /* n */
            lcmp
            ifge 5
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            i2l
            goto 6
      StackMap locals:
      StackMap stack:
         5: lload 1 /* n */
      StackMap locals:
      StackMap stack: long
         6: lstore 1 /* n */
         7: .line 105
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.in:Ljava/io/InputStream;
            lload 1 /* n */
            invokevirtual java.io.InputStream.skip:(J)J
            lstore 1 /* n */
         8: .line 106
            aload 0 /* this */
            dup
            getfield sun.rmi.log.LogInputStream.length:I
            i2l
            lload 1 /* n */
            lsub
            l2i
            putfield sun.rmi.log.LogInputStream.length:I
         9: .line 107
            lload 1 /* n */
            lreturn
        end local 1 // long n
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/rmi/log/LogInputStream;
            0   10     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.rmi.log.LogInputStream this
         0: .line 116
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            istore 1 /* avail */
        start local 1 // int avail
         1: .line 117
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            iload 1 /* avail */
            if_icmpge 2
            aload 0 /* this */
            getfield sun.rmi.log.LogInputStream.length:I
            goto 3
      StackMap locals: int
      StackMap stack:
         2: iload 1 /* avail */
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // int avail
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/rmi/log/LogInputStream;
            1    4     1  avail  I
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.rmi.log.LogInputStream this
         0: .line 125
            aload 0 /* this */
            iconst_0
            putfield sun.rmi.log.LogInputStream.length:I
         1: .line 126
            return
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/rmi/log/LogInputStream;

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.rmi.log.LogInputStream this
         0: .line 132
            aload 0 /* this */
            invokevirtual sun.rmi.log.LogInputStream.close:()V
         1: .line 133
            return
        end local 0 // sun.rmi.log.LogInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/rmi/log/LogInputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "LogInputStream.java"