final class okhttp3.internal.cache2.FileOperator
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: okhttp3.internal.cache2.FileOperator
  super_class: java.lang.Object
{
  private final java.nio.channels.FileChannel fileChannel;
    descriptor: Ljava/nio/channels/FileChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.nio.channels.FileChannel);
    descriptor: (Ljava/nio/channels/FileChannel;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // okhttp3.internal.cache2.FileOperator this
        start local 1 // java.nio.channels.FileChannel fileChannel
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 0 /* this */
            aload 1 /* fileChannel */
            putfield okhttp3.internal.cache2.FileOperator.fileChannel:Ljava/nio/channels/FileChannel;
         2: .line 41
            return
        end local 1 // java.nio.channels.FileChannel fileChannel
        end local 0 // okhttp3.internal.cache2.FileOperator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lokhttp3/internal/cache2/FileOperator;
            0    3     1  fileChannel  Ljava/nio/channels/FileChannel;
    MethodParameters:
             Name  Flags
      fileChannel  

  public void write(long, okio.Buffer, long);
    descriptor: (JLokio/Buffer;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // okhttp3.internal.cache2.FileOperator this
        start local 1 // long pos
        start local 3 // okio.Buffer source
        start local 4 // long byteCount
         0: .line 45
            lload 4 /* byteCount */
            lconst_0
            lcmp
            iflt 1
            lload 4 /* byteCount */
            aload 3 /* source */
            invokevirtual okio.Buffer.size:()J
            lcmp
            ifle 5
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.cache2.FileOperator.fileChannel:Ljava/nio/channels/FileChannel;
            aload 3 /* source */
            lload 1 /* pos */
            lload 4 /* byteCount */
            invokevirtual java.nio.channels.FileChannel.transferFrom:(Ljava/nio/channels/ReadableByteChannel;JJ)J
            lstore 6 /* bytesWritten */
        start local 6 // long bytesWritten
         3: .line 49
            lload 1 /* pos */
            lload 6 /* bytesWritten */
            ladd
            lstore 1 /* pos */
         4: .line 50
            lload 4 /* byteCount */
            lload 6 /* bytesWritten */
            lsub
            lstore 4 /* byteCount */
        end local 6 // long bytesWritten
         5: .line 47
      StackMap locals:
      StackMap stack:
            lload 4 /* byteCount */
            lconst_0
            lcmp
            ifgt 2
         6: .line 52
            return
        end local 4 // long byteCount
        end local 3 // okio.Buffer source
        end local 1 // long pos
        end local 0 // okhttp3.internal.cache2.FileOperator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lokhttp3/internal/cache2/FileOperator;
            0    7     1           pos  J
            0    7     3        source  Lokio/Buffer;
            0    7     4     byteCount  J
            3    5     6  bytesWritten  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      pos        
      source     
      byteCount  

  public void read(long, okio.Buffer, long);
    descriptor: (JLokio/Buffer;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // okhttp3.internal.cache2.FileOperator this
        start local 1 // long pos
        start local 3 // okio.Buffer sink
        start local 4 // long byteCount
         0: .line 60
            lload 4 /* byteCount */
            lconst_0
            lcmp
            ifge 4
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         1: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield okhttp3.internal.cache2.FileOperator.fileChannel:Ljava/nio/channels/FileChannel;
            lload 1 /* pos */
            lload 4 /* byteCount */
            aload 3 /* sink */
            invokevirtual java.nio.channels.FileChannel.transferTo:(JJLjava/nio/channels/WritableByteChannel;)J
            lstore 6 /* bytesRead */
        start local 6 // long bytesRead
         2: .line 64
            lload 1 /* pos */
            lload 6 /* bytesRead */
            ladd
            lstore 1 /* pos */
         3: .line 65
            lload 4 /* byteCount */
            lload 6 /* bytesRead */
            lsub
            lstore 4 /* byteCount */
        end local 6 // long bytesRead
         4: .line 62
      StackMap locals:
      StackMap stack:
            lload 4 /* byteCount */
            lconst_0
            lcmp
            ifgt 1
         5: .line 67
            return
        end local 4 // long byteCount
        end local 3 // okio.Buffer sink
        end local 1 // long pos
        end local 0 // okhttp3.internal.cache2.FileOperator this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lokhttp3/internal/cache2/FileOperator;
            0    6     1        pos  J
            0    6     3       sink  Lokio/Buffer;
            0    6     4  byteCount  J
            2    4     6  bytesRead  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      pos        
      sink       
      byteCount  
}
SourceFile: "FileOperator.java"