final class com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream
  super_class: java.io.OutputStream
{
  private com.microsoft.sqlserver.jdbc.SQLServerBlob parentBlob;
    descriptor: Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;
    flags: (0x0002) ACC_PRIVATE

  private long currentPos;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(com.microsoft.sqlserver.jdbc.SQLServerBlob, long);
    descriptor: (Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
        start local 1 // com.microsoft.sqlserver.jdbc.SQLServerBlob parentBlob
        start local 2 // long startPos
         0: .line 417
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 414
            aload 0 /* this */
            aconst_null
            putfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.parentBlob:Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;
         2: .line 418
            aload 0 /* this */
            aload 1 /* parentBlob */
            putfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.parentBlob:Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;
         3: .line 419
            aload 0 /* this */
            lload 2 /* startPos */
            putfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.currentPos:J
         4: .line 420
            return
        end local 2 // long startPos
        end local 1 // com.microsoft.sqlserver.jdbc.SQLServerBlob parentBlob
        end local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/microsoft/sqlserver/jdbc/SQLServerBlobOutputStream;
            0    5     1  parentBlob  Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;
            0    5     2    startPos  J
    MethodParameters:
            Name  Flags
      parentBlob  
      startPos    

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
        start local 1 // byte[] b
         0: .line 424
            aload 1 /* b */
            ifnonnull 2
         1: .line 425
            return
         2: .line 426
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.write:([BII)V
         3: .line 427
            return
        end local 1 // byte[] b
        end local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/microsoft/sqlserver/jdbc/SQLServerBlobOutputStream;
            0    4     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 435
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.parentBlob:Lcom/microsoft/sqlserver/jdbc/SQLServerBlob;
            aload 0 /* this */
            getfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.currentPos:J
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual com.microsoft.sqlserver.jdbc.SQLServerBlob.setBytes:(J[BII)I
            istore 4 /* bytesWritten */
        start local 4 // int bytesWritten
         1: .line 436
            aload 0 /* this */
            dup
            getfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.currentPos:J
            iload 4 /* bytesWritten */
            i2l
            ladd
            putfield com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.currentPos:J
        end local 4 // int bytesWritten
         2: .line 437
            goto 5
      StackMap locals:
      StackMap stack: java.sql.SQLException
         3: astore 4 /* ex */
        start local 4 // java.sql.SQLException ex
         4: .line 438
            new java.io.IOException
            dup
            aload 4 /* ex */
            invokevirtual java.sql.SQLException.getMessage:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.sql.SQLException ex
         5: .line 440
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/microsoft/sqlserver/jdbc/SQLServerBlobOutputStream;
            0    6     1             b  [B
            0    6     2           off  I
            0    6     3           len  I
            1    2     4  bytesWritten  I
            4    5     4            ex  Ljava/sql/SQLException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.sql.SQLException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
        start local 1 // int b
         0: .line 444
            iconst_1
            newarray 8
            astore 2 /* bTemp */
        start local 2 // byte[] bTemp
         1: .line 445
            aload 2 /* bTemp */
            iconst_0
            iload 1 /* b */
            sipush 255
            iand
            i2b
            bastore
         2: .line 446
            aload 0 /* this */
            aload 2 /* bTemp */
            iconst_0
            aload 2 /* bTemp */
            arraylength
            invokevirtual com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream.write:([BII)V
         3: .line 447
            return
        end local 2 // byte[] bTemp
        end local 1 // int b
        end local 0 // com.microsoft.sqlserver.jdbc.SQLServerBlobOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/microsoft/sqlserver/jdbc/SQLServerBlobOutputStream;
            0    4     1      b  I
            1    4     2  bTemp  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "SQLServerBlob.java"