public class android.net.NetworkStatsHistory$DataStreamUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.net.NetworkStatsHistory$DataStreamUtils
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.net.NetworkStatsHistory$DataStreamUtils this
         0: .line 736
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // android.net.NetworkStatsHistory$DataStreamUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/net/NetworkStatsHistory$DataStreamUtils;

  public static long[] readFullLongArray(java.io.DataInputStream);
    descriptor: (Ljava/io/DataInputStream;)[J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // java.io.DataInputStream in
         0: .line 739
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readInt:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 740
            iload 1 /* size */
            ifge 2
            new java.net.ProtocolException
            dup
            ldc "negative array size"
            invokespecial java.net.ProtocolException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 741
      StackMap locals: int
      StackMap stack:
            iload 1 /* size */
            newarray 11
            astore 2 /* values */
        start local 2 // long[] values
         3: .line 742
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 743
      StackMap locals: long[] int
      StackMap stack:
            aload 2 /* values */
            iload 3 /* i */
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readLong:()J
            lastore
         6: .line 742
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 2 /* values */
            arraylength
            if_icmplt 5
        end local 3 // int i
         8: .line 745
            aload 2 /* values */
            areturn
        end local 2 // long[] values
        end local 1 // int size
        end local 0 // java.io.DataInputStream in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0      in  Ljava/io/DataInputStream;
            1    9     1    size  I
            3    9     2  values  [J
            4    8     3       i  I
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      in    

  public static long readVarLong(java.io.DataInputStream);
    descriptor: (Ljava/io/DataInputStream;)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // java.io.DataInputStream in
         0: .line 752
            iconst_0
            istore 1 /* shift */
        start local 1 // int shift
         1: .line 753
            lconst_0
            lstore 2 /* result */
        start local 2 // long result
         2: .line 754
            goto 8
         3: .line 755
      StackMap locals: int long
      StackMap stack:
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readByte:()B
            istore 4 /* b */
        start local 4 // byte b
         4: .line 756
            lload 2 /* result */
            iload 4 /* b */
            bipush 127
            iand
            i2l
            iload 1 /* shift */
            lshl
            lor
            lstore 2 /* result */
         5: .line 757
            iload 4 /* b */
            sipush 128
            iand
            ifne 7
         6: .line 758
            lload 2 /* result */
            lreturn
         7: .line 759
      StackMap locals: int
      StackMap stack:
            iinc 1 /* shift */ 7
        end local 4 // byte b
         8: .line 754
      StackMap locals:
      StackMap stack:
            iload 1 /* shift */
            bipush 64
            if_icmplt 3
         9: .line 761
            new java.net.ProtocolException
            dup
            ldc "malformed long"
            invokespecial java.net.ProtocolException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // long result
        end local 1 // int shift
        end local 0 // java.io.DataInputStream in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0      in  Ljava/io/DataInputStream;
            1   10     1   shift  I
            2   10     2  result  J
            4    8     4       b  B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static void writeVarLong(java.io.DataOutputStream, long);
    descriptor: (Ljava/io/DataOutputStream;J)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.DataOutputStream out
        start local 1 // long value
         0: .line 769
      StackMap locals:
      StackMap stack:
            lload 1 /* value */
            ldc -128
            land
            lconst_0
            lcmp
            ifne 3
         1: .line 770
            aload 0 /* out */
            lload 1 /* value */
            l2i
            invokevirtual java.io.DataOutputStream.writeByte:(I)V
         2: .line 771
            return
         3: .line 773
      StackMap locals:
      StackMap stack:
            aload 0 /* out */
            lload 1 /* value */
            l2i
            bipush 127
            iand
            sipush 128
            ior
            invokevirtual java.io.DataOutputStream.writeByte:(I)V
         4: .line 774
            lload 1 /* value */
            bipush 7
            lushr
            lstore 1 /* value */
         5: .line 768
            goto 0
        end local 1 // long value
        end local 0 // java.io.DataOutputStream out
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0    out  Ljava/io/DataOutputStream;
            0    6     1  value  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      out    
      value  

  public static long[] readVarLongArray(java.io.DataInputStream);
    descriptor: (Ljava/io/DataInputStream;)[J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // java.io.DataInputStream in
         0: .line 780
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readInt:()I
            istore 1 /* size */
        start local 1 // int size
         1: .line 781
            iload 1 /* size */
            iconst_m1
            if_icmpne 2
            aconst_null
            areturn
         2: .line 782
      StackMap locals: int
      StackMap stack:
            iload 1 /* size */
            ifge 3
            new java.net.ProtocolException
            dup
            ldc "negative array size"
            invokespecial java.net.ProtocolException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 783
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            newarray 11
            astore 2 /* values */
        start local 2 // long[] values
         4: .line 784
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 8
         6: .line 785
      StackMap locals: long[] int
      StackMap stack:
            aload 2 /* values */
            iload 3 /* i */
            aload 0 /* in */
            invokestatic android.net.NetworkStatsHistory$DataStreamUtils.readVarLong:(Ljava/io/DataInputStream;)J
            lastore
         7: .line 784
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 2 /* values */
            arraylength
            if_icmplt 6
        end local 3 // int i
         9: .line 787
            aload 2 /* values */
            areturn
        end local 2 // long[] values
        end local 1 // int size
        end local 0 // java.io.DataInputStream in
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0      in  Ljava/io/DataInputStream;
            1   10     1    size  I
            4   10     2  values  [J
            5    9     3       i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public static void writeVarLongArray(java.io.DataOutputStream, long[], int);
    descriptor: (Ljava/io/DataOutputStream;[JI)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // java.io.DataOutputStream out
        start local 1 // long[] values
        start local 2 // int size
         0: .line 792
            aload 1 /* values */
            ifnonnull 3
         1: .line 793
            aload 0 /* out */
            iconst_m1
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         2: .line 794
            return
         3: .line 796
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            aload 1 /* values */
            arraylength
            if_icmple 5
         4: .line 797
            new java.lang.IllegalArgumentException
            dup
            ldc "size larger than length"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 799
      StackMap locals:
      StackMap stack:
            aload 0 /* out */
            iload 2 /* size */
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         6: .line 800
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 801
      StackMap locals: int
      StackMap stack:
            aload 0 /* out */
            aload 1 /* values */
            iload 3 /* i */
            laload
            invokestatic android.net.NetworkStatsHistory$DataStreamUtils.writeVarLong:(Ljava/io/DataOutputStream;J)V
         9: .line 800
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* size */
            if_icmplt 8
        end local 3 // int i
        11: .line 803
            return
        end local 2 // int size
        end local 1 // long[] values
        end local 0 // java.io.DataOutputStream out
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0     out  Ljava/io/DataOutputStream;
            0   12     1  values  [J
            0   12     2    size  I
            7   11     3       i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      out     
      values  
      size    
}
SourceFile: "NetworkStatsHistory.java"
NestHost: android.net.NetworkStatsHistory
InnerClasses:
  public DataStreamUtils = android.net.NetworkStatsHistory$DataStreamUtils of android.net.NetworkStatsHistory