public final class android.app.UiAutomationConnection extends android.app.IUiAutomationConnection$Stub
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.app.UiAutomationConnection
  super_class: android.app.IUiAutomationConnection$Stub
{
  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "UiAutomationConnection"

  private static final int INITIAL_FROZEN_ROTATION_UNSPECIFIED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  private final android.view.IWindowManager mWindowManager;
    descriptor: Landroid/view/IWindowManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final android.view.accessibility.IAccessibilityManager mAccessibilityManager;
    descriptor: Landroid/view/accessibility/IAccessibilityManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final android.content.pm.IPackageManager mPackageManager;
    descriptor: Landroid/content/pm/IPackageManager;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object mLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final android.os.Binder mToken;
    descriptor: Landroid/os/Binder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private android.accessibilityservice.IAccessibilityServiceClient mClient;
    descriptor: Landroid/accessibilityservice/IAccessibilityServiceClient;
    flags: (0x0002) ACC_PRIVATE

  private boolean mIsShutdown;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 59
            aload 0 /* this */
            invokespecial android.app.IUiAutomationConnection$Stub.<init>:()V
         1: .line 65
            aload 0 /* this */
         2: .line 66
            ldc "window"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
         3: .line 65
            invokestatic android.view.IWindowManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/view/IWindowManager;
            putfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
         4: .line 68
            aload 0 /* this */
         5: .line 69
            ldc "accessibility"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
            invokestatic android.view.accessibility.IAccessibilityManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/view/accessibility/IAccessibilityManager;
            putfield android.app.UiAutomationConnection.mAccessibilityManager:Landroid/view/accessibility/IAccessibilityManager;
         6: .line 71
            aload 0 /* this */
         7: .line 72
            ldc "package"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
            invokestatic android.content.pm.IPackageManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/content/pm/IPackageManager;
            putfield android.app.UiAutomationConnection.mPackageManager:Landroid/content/pm/IPackageManager;
         8: .line 74
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
         9: .line 76
            aload 0 /* this */
            new android.os.Binder
            dup
            invokespecial android.os.Binder.<init>:()V
            putfield android.app.UiAutomationConnection.mToken:Landroid/os/Binder;
        10: .line 78
            aload 0 /* this */
            iconst_m1
            putfield android.app.UiAutomationConnection.mInitialFrozenRotation:I
        11: .line 59
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Landroid/app/UiAutomationConnection;

  public void connect(android.accessibilityservice.IAccessibilityServiceClient, int);
    descriptor: (Landroid/accessibilityservice/IAccessibilityServiceClient;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // android.accessibilityservice.IAccessibilityServiceClient client
        start local 2 // int flags
         0: .line 88
            aload 1 /* client */
            ifnonnull 2
         1: .line 89
            new java.lang.IllegalArgumentException
            dup
            ldc "Client cannot be null!"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         3: .line 92
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         4: .line 93
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.isConnectedLocked:()Z
            ifeq 6
         5: .line 94
            new java.lang.IllegalStateException
            dup
            ldc "Already connected."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 96
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            invokestatic android.os.Binder.getCallingUid:()I
            putfield android.app.UiAutomationConnection.mOwningUid:I
         7: .line 97
            aload 0 /* this */
            aload 1 /* client */
            iload 2 /* flags */
            invokevirtual android.app.UiAutomationConnection.registerUiTestAutomationServiceLocked:(Landroid/accessibilityservice/IAccessibilityServiceClient;I)V
         8: .line 98
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.storeRotationStateLocked:()V
         9: .line 91
            aload 3
            monitorexit
        10: goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: aload 3
            monitorexit
        12: athrow
        13: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int flags
        end local 1 // android.accessibilityservice.IAccessibilityServiceClient client
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Landroid/app/UiAutomationConnection;
            0   14     1  client  Landroid/accessibilityservice/IAccessibilityServiceClient;
            0   14     2   flags  I
      Exception table:
        from    to  target  type
           3    10      11  any
          11    12      11  any
    MethodParameters:
        Name  Flags
      client  
      flags   

  public void disconnect();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 104
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 105
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 106
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 107
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.isConnectedLocked:()Z
            ifne 5
         4: .line 108
            new java.lang.IllegalStateException
            dup
            ldc "Already disconnected."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 110
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield android.app.UiAutomationConnection.mOwningUid:I
         6: .line 111
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.unregisterUiTestAutomationServiceLocked:()V
         7: .line 112
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.restoreRotationStateLocked:()V
         8: .line 104
            aload 1
            monitorexit
         9: goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: aload 1
            monitorexit
        11: athrow
        12: .line 114
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Landroid/app/UiAutomationConnection;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any

  public boolean injectInputEvent(android.view.InputEvent, boolean);
    descriptor: (Landroid/view/InputEvent;Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // android.view.InputEvent event
        start local 2 // boolean sync
         0: .line 118
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 119
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 120
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 121
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 118
            aload 3
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection android.view.InputEvent int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 3
            monitorexit
         7: athrow
         8: .line 123
      StackMap locals:
      StackMap stack:
            iload 2 /* sync */
            ifeq 9
            iconst_2
            goto 10
         9: .line 124
      StackMap locals:
      StackMap stack:
            iconst_0
        10: .line 123
      StackMap locals:
      StackMap stack: int
            istore 3 /* mode */
        start local 3 // int mode
        11: .line 125
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 4 /* identity */
        start local 4 // long identity
        12: .line 127
            invokestatic android.hardware.input.InputManager.getInstance:()Landroid/hardware/input/InputManager;
            aload 1 /* event */
            iload 3 /* mode */
            invokevirtual android.hardware.input.InputManager.injectInputEvent:(Landroid/view/InputEvent;I)Z
            istore 7
        13: .line 129
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        14: .line 127
            iload 7
            ireturn
        15: .line 128
      StackMap locals: android.app.UiAutomationConnection android.view.InputEvent int int long
      StackMap stack: java.lang.Throwable
            astore 6
        16: .line 129
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        17: .line 130
            aload 6
            athrow
        end local 4 // long identity
        end local 3 // int mode
        end local 2 // boolean sync
        end local 1 // android.view.InputEvent event
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Landroid/app/UiAutomationConnection;
            0   18     1     event  Landroid/view/InputEvent;
            0   18     2      sync  Z
           11   18     3      mode  I
           12   18     4  identity  J
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
          12    13      15  any
    MethodParameters:
       Name  Flags
      event  
      sync   

  public boolean setRotation(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // int rotation
         0: .line 135
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 136
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 137
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 138
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 135
            aload 2
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 140
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 2 /* identity */
        start local 2 // long identity
         9: .line 142
            iload 1 /* rotation */
            bipush -2
            if_icmpne 12
        10: .line 143
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            invokeinterface android.view.IWindowManager.thawRotation:()V
        11: .line 144
            goto 13
        12: .line 145
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            iload 1 /* rotation */
            invokeinterface android.view.IWindowManager.freezeRotation:(I)V
        13: .line 151
      StackMap locals:
      StackMap stack:
            lload 2 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        14: .line 147
            iconst_1
            ireturn
        15: .line 148
      StackMap locals:
      StackMap stack: android.os.RemoteException
            pop
        16: .line 151
            lload 2 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
            goto 20
        17: .line 150
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
        18: .line 151
            lload 2 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        19: .line 152
            aload 4
            athrow
        20: .line 153
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // long identity
        end local 1 // int rotation
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Landroid/app/UiAutomationConnection;
            0   21     1  rotation  I
            9   21     2  identity  J
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    13      15  Class android.os.RemoteException
           9    13      17  any
          15    16      17  any
    MethodParameters:
          Name  Flags
      rotation  

  public android.graphics.Bitmap takeScreenshot(android.graphics.Rect, int);
    descriptor: (Landroid/graphics/Rect;I)Landroid/graphics/Bitmap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=3
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // android.graphics.Rect crop
        start local 2 // int rotation
         0: .line 158
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 3
            monitorenter
         1: .line 159
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 160
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 161
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 158
            aload 3
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection android.graphics.Rect int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 3
            monitorexit
         7: athrow
         8: .line 163
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 3 /* identity */
        start local 3 // long identity
         9: .line 165
            aload 1 /* crop */
            invokevirtual android.graphics.Rect.width:()I
            istore 5 /* width */
        start local 5 // int width
        10: .line 166
            aload 1 /* crop */
            invokevirtual android.graphics.Rect.height:()I
            istore 6 /* height */
        start local 6 // int height
        11: .line 167
            aload 1 /* crop */
            iload 5 /* width */
            iload 6 /* height */
            iload 2 /* rotation */
            invokestatic android.view.SurfaceControl.screenshot:(Landroid/graphics/Rect;III)Landroid/graphics/Bitmap;
            astore 8
        12: .line 169
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 167
            aload 8
            areturn
        end local 6 // int height
        end local 5 // int width
        14: .line 168
      StackMap locals: android.app.UiAutomationConnection android.graphics.Rect int long
      StackMap stack: java.lang.Throwable
            astore 7
        15: .line 169
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        16: .line 170
            aload 7
            athrow
        end local 3 // long identity
        end local 2 // int rotation
        end local 1 // android.graphics.Rect crop
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Landroid/app/UiAutomationConnection;
            0   17     1      crop  Landroid/graphics/Rect;
            0   17     2  rotation  I
            9   17     3  identity  J
           10   14     5     width  I
           11   14     6    height  I
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    12      14  any
    MethodParameters:
          Name  Flags
      crop      
      rotation  

  public boolean clearWindowContentFrameStats(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // int windowId
         0: .line 175
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 176
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 177
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 178
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 175
            aload 2
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 180
      StackMap locals:
      StackMap stack:
            invokestatic android.os.UserHandle.getCallingUserId:()I
            istore 2 /* callingUserId */
        start local 2 // int callingUserId
         9: .line 181
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 3 /* identity */
        start local 3 // long identity
        10: .line 183
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mAccessibilityManager:Landroid/view/accessibility/IAccessibilityManager;
            iload 1 /* windowId */
            iload 2 /* callingUserId */
            invokeinterface android.view.accessibility.IAccessibilityManager.getWindowToken:(II)Landroid/os/IBinder;
            astore 5 /* token */
        start local 5 // android.os.IBinder token
        11: .line 184
            aload 5 /* token */
            ifnonnull 14
        12: .line 189
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 185
            iconst_0
            ireturn
        14: .line 187
      StackMap locals: int long android.os.IBinder
      StackMap stack:
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            aload 5 /* token */
            invokeinterface android.view.IWindowManager.clearWindowContentFrameStats:(Landroid/os/IBinder;)Z
            istore 7
        15: .line 189
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        16: .line 187
            iload 7
            ireturn
        end local 5 // android.os.IBinder token
        17: .line 188
      StackMap locals: android.app.UiAutomationConnection int int long
      StackMap stack: java.lang.Throwable
            astore 6
        18: .line 189
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        19: .line 190
            aload 6
            athrow
        end local 3 // long identity
        end local 2 // int callingUserId
        end local 1 // int windowId
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Landroid/app/UiAutomationConnection;
            0   20     1       windowId  I
            9   20     2  callingUserId  I
           10   20     3       identity  J
           11   17     5          token  Landroid/os/IBinder;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
          10    12      17  any
          14    15      17  any
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
          Name  Flags
      windowId  

  public android.view.WindowContentFrameStats getWindowContentFrameStats(int);
    descriptor: (I)Landroid/view/WindowContentFrameStats;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // int windowId
         0: .line 195
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 196
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 197
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 198
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 195
            aload 2
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 2
            monitorexit
         7: athrow
         8: .line 200
      StackMap locals:
      StackMap stack:
            invokestatic android.os.UserHandle.getCallingUserId:()I
            istore 2 /* callingUserId */
        start local 2 // int callingUserId
         9: .line 201
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 3 /* identity */
        start local 3 // long identity
        10: .line 203
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mAccessibilityManager:Landroid/view/accessibility/IAccessibilityManager;
            iload 1 /* windowId */
            iload 2 /* callingUserId */
            invokeinterface android.view.accessibility.IAccessibilityManager.getWindowToken:(II)Landroid/os/IBinder;
            astore 5 /* token */
        start local 5 // android.os.IBinder token
        11: .line 204
            aload 5 /* token */
            ifnonnull 14
        12: .line 209
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 205
            aconst_null
            areturn
        14: .line 207
      StackMap locals: int long android.os.IBinder
      StackMap stack:
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            aload 5 /* token */
            invokeinterface android.view.IWindowManager.getWindowContentFrameStats:(Landroid/os/IBinder;)Landroid/view/WindowContentFrameStats;
            astore 7
        15: .line 209
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        16: .line 207
            aload 7
            areturn
        end local 5 // android.os.IBinder token
        17: .line 208
      StackMap locals: android.app.UiAutomationConnection int int long
      StackMap stack: java.lang.Throwable
            astore 6
        18: .line 209
            lload 3 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        19: .line 210
            aload 6
            athrow
        end local 3 // long identity
        end local 2 // int callingUserId
        end local 1 // int windowId
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Landroid/app/UiAutomationConnection;
            0   20     1       windowId  I
            9   20     2  callingUserId  I
           10   20     3       identity  J
           11   17     5          token  Landroid/os/IBinder;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
          10    12      17  any
          14    15      17  any
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
          Name  Flags
      windowId  

  public void clearWindowAnimationFrameStats();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 215
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 216
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 217
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 218
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 215
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 220
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 1 /* identity */
        start local 1 // long identity
         9: .line 222
            invokestatic android.view.SurfaceControl.clearAnimationFrameStats:()Z
            pop
        10: .line 223
            goto 14
      StackMap locals: android.app.UiAutomationConnection long
      StackMap stack: java.lang.Throwable
        11: astore 3
        12: .line 224
            lload 1 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 225
            aload 3
            athrow
        14: .line 224
      StackMap locals:
      StackMap stack:
            lload 1 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        15: .line 226
            return
        end local 1 // long identity
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Landroid/app/UiAutomationConnection;
            9   16     1  identity  J
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    11      11  any

  public android.view.WindowAnimationFrameStats getWindowAnimationFrameStats();
    descriptor: ()Landroid/view/WindowAnimationFrameStats;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 230
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 231
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 232
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 233
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 230
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 235
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 1 /* identity */
        start local 1 // long identity
         9: .line 237
            new android.view.WindowAnimationFrameStats
            dup
            invokespecial android.view.WindowAnimationFrameStats.<init>:()V
            astore 3 /* stats */
        start local 3 // android.view.WindowAnimationFrameStats stats
        10: .line 238
            aload 3 /* stats */
            invokestatic android.view.SurfaceControl.getAnimationFrameStats:(Landroid/view/WindowAnimationFrameStats;)Z
            pop
        11: .line 239
            aload 3 /* stats */
            astore 5
        12: .line 241
            lload 1 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 239
            aload 5
            areturn
        end local 3 // android.view.WindowAnimationFrameStats stats
        14: .line 240
      StackMap locals: android.app.UiAutomationConnection long
      StackMap stack: java.lang.Throwable
            astore 4
        15: .line 241
            lload 1 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        16: .line 242
            aload 4
            athrow
        end local 1 // long identity
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Landroid/app/UiAutomationConnection;
            9   17     1  identity  J
           10   14     3     stats  Landroid/view/WindowAnimationFrameStats;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    12      14  any

  public void grantRuntimePermission(java.lang.String, java.lang.String, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // java.lang.String packageName
        start local 2 // java.lang.String permission
        start local 3 // int userId
         0: .line 248
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 249
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 250
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 251
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 248
            aload 4
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection java.lang.String java.lang.String int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 4
            monitorexit
         7: athrow
         8: .line 253
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 4 /* identity */
        start local 4 // long identity
         9: .line 255
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mPackageManager:Landroid/content/pm/IPackageManager;
            aload 1 /* packageName */
            aload 2 /* permission */
            iload 3 /* userId */
            invokeinterface android.content.pm.IPackageManager.grantRuntimePermission:(Ljava/lang/String;Ljava/lang/String;I)V
        10: .line 256
            goto 14
      StackMap locals: android.app.UiAutomationConnection java.lang.String java.lang.String int long
      StackMap stack: java.lang.Throwable
        11: astore 6
        12: .line 257
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 258
            aload 6
            athrow
        14: .line 257
      StackMap locals:
      StackMap stack:
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        15: .line 259
            return
        end local 4 // long identity
        end local 3 // int userId
        end local 2 // java.lang.String permission
        end local 1 // java.lang.String packageName
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Landroid/app/UiAutomationConnection;
            0   16     1  packageName  Ljava/lang/String;
            0   16     2   permission  Ljava/lang/String;
            0   16     3       userId  I
            9   16     4     identity  J
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    11      11  any
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
             Name  Flags
      packageName  
      permission   
      userId       

  public void revokeRuntimePermission(java.lang.String, java.lang.String, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // java.lang.String packageName
        start local 2 // java.lang.String permission
        start local 3 // int userId
         0: .line 264
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 265
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 266
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 267
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 264
            aload 4
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection java.lang.String java.lang.String int java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 4
            monitorexit
         7: athrow
         8: .line 269
      StackMap locals:
      StackMap stack:
            invokestatic android.os.Binder.clearCallingIdentity:()J
            lstore 4 /* identity */
        start local 4 // long identity
         9: .line 271
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mPackageManager:Landroid/content/pm/IPackageManager;
            aload 1 /* packageName */
            aload 2 /* permission */
            iload 3 /* userId */
            invokeinterface android.content.pm.IPackageManager.revokeRuntimePermission:(Ljava/lang/String;Ljava/lang/String;I)V
        10: .line 272
            goto 14
      StackMap locals: android.app.UiAutomationConnection java.lang.String java.lang.String int long
      StackMap stack: java.lang.Throwable
        11: astore 6
        12: .line 273
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        13: .line 274
            aload 6
            athrow
        14: .line 273
      StackMap locals:
      StackMap stack:
            lload 4 /* identity */
            invokestatic android.os.Binder.restoreCallingIdentity:(J)V
        15: .line 275
            return
        end local 4 // long identity
        end local 3 // int userId
        end local 2 // java.lang.String permission
        end local 1 // java.lang.String packageName
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Landroid/app/UiAutomationConnection;
            0   16     1  packageName  Ljava/lang/String;
            0   16     2   permission  Ljava/lang/String;
            0   16     3       userId  I
            9   16     4     identity  J
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           9    11      11  any
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
             Name  Flags
      packageName  
      permission   
      userId       

  public void executeShellCommand(java.lang.String, android.os.ParcelFileDescriptor, android.os.ParcelFileDescriptor);
    descriptor: (Ljava/lang/String;Landroid/os/ParcelFileDescriptor;Landroid/os/ParcelFileDescriptor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // java.lang.String command
        start local 2 // android.os.ParcelFileDescriptor sink
        start local 3 // android.os.ParcelFileDescriptor source
         0: .line 310
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
         1: .line 311
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         2: .line 312
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         3: .line 313
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfNotConnectedLocked:()V
         4: .line 310
            aload 4
            monitorexit
         5: goto 8
      StackMap locals: android.app.UiAutomationConnection java.lang.String android.os.ParcelFileDescriptor android.os.ParcelFileDescriptor java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 4
            monitorexit
         7: athrow
         8: .line 318
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.Runtime.getRuntime:()Ljava/lang/Runtime;
            aload 1 /* command */
            invokevirtual java.lang.Runtime.exec:(Ljava/lang/String;)Ljava/lang/Process;
            astore 4 /* process */
        start local 4 // java.lang.Process process
         9: .line 319
            goto 12
        end local 4 // java.lang.Process process
      StackMap locals:
      StackMap stack: java.io.IOException
        10: astore 5 /* exc */
        start local 5 // java.io.IOException exc
        11: .line 320
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Error running shell command '"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* command */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* exc */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException exc
        start local 4 // java.lang.Process process
        12: .line 325
      StackMap locals: java.lang.Process
      StackMap stack:
            aload 2 /* sink */
            ifnull 18
        13: .line 326
            aload 4 /* process */
            invokevirtual java.lang.Process.getInputStream:()Ljava/io/InputStream;
            astore 6 /* sink_in */
        start local 6 // java.io.InputStream sink_in
        14: .line 327
            new java.io.FileOutputStream
            dup
            aload 2 /* sink */
            invokevirtual android.os.ParcelFileDescriptor.getFileDescriptor:()Ljava/io/FileDescriptor;
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/FileDescriptor;)V
            astore 7 /* sink_out */
        start local 7 // java.io.OutputStream sink_out
        15: .line 329
            new java.lang.Thread
            dup
            new android.app.UiAutomationConnection$Repeater
            dup
            aload 0 /* this */
            aload 6 /* sink_in */
            aload 7 /* sink_out */
            invokespecial android.app.UiAutomationConnection$Repeater.<init>:(Landroid/app/UiAutomationConnection;Ljava/io/InputStream;Ljava/io/OutputStream;)V
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
            astore 5 /* readFromProcess */
        start local 5 // java.lang.Thread readFromProcess
        16: .line 330
            aload 5 /* readFromProcess */
            invokevirtual java.lang.Thread.start:()V
        end local 7 // java.io.OutputStream sink_out
        end local 6 // java.io.InputStream sink_in
        17: .line 331
            goto 19
        end local 5 // java.lang.Thread readFromProcess
        18: .line 332
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 5 /* readFromProcess */
        start local 5 // java.lang.Thread readFromProcess
        19: .line 337
      StackMap locals: java.lang.Thread
      StackMap stack:
            aload 3 /* source */
            ifnull 25
        20: .line 338
            aload 4 /* process */
            invokevirtual java.lang.Process.getOutputStream:()Ljava/io/OutputStream;
            astore 7 /* source_out */
        start local 7 // java.io.OutputStream source_out
        21: .line 339
            new java.io.FileInputStream
            dup
            aload 3 /* source */
            invokevirtual android.os.ParcelFileDescriptor.getFileDescriptor:()Ljava/io/FileDescriptor;
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/FileDescriptor;)V
            astore 8 /* source_in */
        start local 8 // java.io.InputStream source_in
        22: .line 341
            new java.lang.Thread
            dup
            new android.app.UiAutomationConnection$Repeater
            dup
            aload 0 /* this */
            aload 8 /* source_in */
            aload 7 /* source_out */
            invokespecial android.app.UiAutomationConnection$Repeater.<init>:(Landroid/app/UiAutomationConnection;Ljava/io/InputStream;Ljava/io/OutputStream;)V
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
            astore 6 /* writeToProcess */
        start local 6 // java.lang.Thread writeToProcess
        23: .line 342
            aload 6 /* writeToProcess */
            invokevirtual java.lang.Thread.start:()V
        end local 8 // java.io.InputStream source_in
        end local 7 // java.io.OutputStream source_out
        24: .line 343
            goto 26
        end local 6 // java.lang.Thread writeToProcess
        25: .line 344
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 6 /* writeToProcess */
        start local 6 // java.lang.Thread writeToProcess
        26: .line 347
      StackMap locals: java.lang.Thread
      StackMap stack:
            new java.lang.Thread
            dup
            new android.app.UiAutomationConnection$1
            dup
            aload 0 /* this */
            invokespecial android.app.UiAutomationConnection$1.<init>:(Landroid/app/UiAutomationConnection;)V
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;)V
            astore 7 /* cleanup */
        start local 7 // java.lang.Thread cleanup
        27: .line 365
            aload 7 /* cleanup */
            invokevirtual java.lang.Thread.start:()V
        28: .line 366
            return
        end local 7 // java.lang.Thread cleanup
        end local 6 // java.lang.Thread writeToProcess
        end local 5 // java.lang.Thread readFromProcess
        end local 4 // java.lang.Process process
        end local 3 // android.os.ParcelFileDescriptor source
        end local 2 // android.os.ParcelFileDescriptor sink
        end local 1 // java.lang.String command
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   29     0             this  Landroid/app/UiAutomationConnection;
            0   29     1          command  Ljava/lang/String;
            0   29     2             sink  Landroid/os/ParcelFileDescriptor;
            0   29     3           source  Landroid/os/ParcelFileDescriptor;
            9   10     4          process  Ljava/lang/Process;
           12   29     4          process  Ljava/lang/Process;
           11   12     5              exc  Ljava/io/IOException;
           16   18     5  readFromProcess  Ljava/lang/Thread;
           19   29     5  readFromProcess  Ljava/lang/Thread;
           14   17     6          sink_in  Ljava/io/InputStream;
           15   17     7         sink_out  Ljava/io/OutputStream;
           23   25     6   writeToProcess  Ljava/lang/Thread;
           26   29     6   writeToProcess  Ljava/lang/Thread;
           21   24     7       source_out  Ljava/io/OutputStream;
           22   24     8        source_in  Ljava/io/InputStream;
           27   29     7          cleanup  Ljava/lang/Thread;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
           8     9      10  Class java.io.IOException
    Exceptions:
      throws android.os.RemoteException
    MethodParameters:
         Name  Flags
      command  final
      sink     final
      source   final

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 370
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 371
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.isConnectedLocked:()Z
            ifeq 3
         2: .line 372
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfCalledByNotTrustedUidLocked:()V
         3: .line 374
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.throwIfShutdownLocked:()V
         4: .line 375
            aload 0 /* this */
            iconst_1
            putfield android.app.UiAutomationConnection.mIsShutdown:Z
         5: .line 376
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.isConnectedLocked:()Z
            ifeq 7
         6: .line 377
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.disconnect:()V
         7: .line 370
      StackMap locals:
      StackMap stack:
            aload 1
            monitorexit
         8: goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: aload 1
            monitorexit
        10: athrow
        11: .line 380
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Landroid/app/UiAutomationConnection;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any

  private void registerUiTestAutomationServiceLocked(android.accessibilityservice.IAccessibilityServiceClient, int);
    descriptor: (Landroid/accessibilityservice/IAccessibilityServiceClient;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // android.app.UiAutomationConnection this
        start local 1 // android.accessibilityservice.IAccessibilityServiceClient client
        start local 2 // int flags
         0: .line 385
            ldc "accessibility"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
         1: .line 384
            invokestatic android.view.accessibility.IAccessibilityManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/view/accessibility/IAccessibilityManager;
            astore 3 /* manager */
        start local 3 // android.view.accessibility.IAccessibilityManager manager
         2: .line 386
            new android.accessibilityservice.AccessibilityServiceInfo
            dup
            invokespecial android.accessibilityservice.AccessibilityServiceInfo.<init>:()V
            astore 4 /* info */
        start local 4 // android.accessibilityservice.AccessibilityServiceInfo info
         3: .line 387
            aload 4 /* info */
            iconst_m1
            putfield android.accessibilityservice.AccessibilityServiceInfo.eventTypes:I
         4: .line 388
            aload 4 /* info */
            bipush 16
            putfield android.accessibilityservice.AccessibilityServiceInfo.feedbackType:I
         5: .line 389
            aload 4 /* info */
            dup
            getfield android.accessibilityservice.AccessibilityServiceInfo.flags:I
            ldc 65554
            ior
            putfield android.accessibilityservice.AccessibilityServiceInfo.flags:I
         6: .line 392
            aload 4 /* info */
            bipush 15
            invokevirtual android.accessibilityservice.AccessibilityServiceInfo.setCapabilities:(I)V
         7: .line 399
            aload 3 /* manager */
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mToken:Landroid/os/Binder;
            aload 1 /* client */
            aload 4 /* info */
            iload 2 /* flags */
            invokeinterface android.view.accessibility.IAccessibilityManager.registerUiTestAutomationService:(Landroid/os/IBinder;Landroid/accessibilityservice/IAccessibilityServiceClient;Landroid/accessibilityservice/AccessibilityServiceInfo;I)V
         8: .line 400
            aload 0 /* this */
            aload 1 /* client */
            putfield android.app.UiAutomationConnection.mClient:Landroid/accessibilityservice/IAccessibilityServiceClient;
         9: .line 401
            goto 12
      StackMap locals: android.app.UiAutomationConnection android.accessibilityservice.IAccessibilityServiceClient int android.view.accessibility.IAccessibilityManager android.accessibilityservice.AccessibilityServiceInfo
      StackMap stack: android.os.RemoteException
        10: astore 5 /* re */
        start local 5 // android.os.RemoteException re
        11: .line 402
            new java.lang.IllegalStateException
            dup
            ldc "Error while registering UiTestAutomationService."
            aload 5 /* re */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // android.os.RemoteException re
        12: .line 404
      StackMap locals:
      StackMap stack:
            return
        end local 4 // android.accessibilityservice.AccessibilityServiceInfo info
        end local 3 // android.view.accessibility.IAccessibilityManager manager
        end local 2 // int flags
        end local 1 // android.accessibilityservice.IAccessibilityServiceClient client
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Landroid/app/UiAutomationConnection;
            0   13     1   client  Landroid/accessibilityservice/IAccessibilityServiceClient;
            0   13     2    flags  I
            2   13     3  manager  Landroid/view/accessibility/IAccessibilityManager;
            3   13     4     info  Landroid/accessibilityservice/AccessibilityServiceInfo;
           11   12     5       re  Landroid/os/RemoteException;
      Exception table:
        from    to  target  type
           7     9      10  Class android.os.RemoteException
    MethodParameters:
        Name  Flags
      client  
      flags   

  private void unregisterUiTestAutomationServiceLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 408
            ldc "accessibility"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
         1: .line 407
            invokestatic android.view.accessibility.IAccessibilityManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/view/accessibility/IAccessibilityManager;
            astore 1 /* manager */
        start local 1 // android.view.accessibility.IAccessibilityManager manager
         2: .line 412
            aload 1 /* manager */
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mClient:Landroid/accessibilityservice/IAccessibilityServiceClient;
            invokeinterface android.view.accessibility.IAccessibilityManager.unregisterUiTestAutomationService:(Landroid/accessibilityservice/IAccessibilityServiceClient;)V
         3: .line 413
            aload 0 /* this */
            aconst_null
            putfield android.app.UiAutomationConnection.mClient:Landroid/accessibilityservice/IAccessibilityServiceClient;
         4: .line 414
            goto 9
      StackMap locals: android.app.UiAutomationConnection android.view.accessibility.IAccessibilityManager
      StackMap stack: android.os.RemoteException
         5: astore 2 /* re */
        start local 2 // android.os.RemoteException re
         6: .line 415
            new java.lang.IllegalStateException
            dup
            ldc "Error while unregistering UiTestAutomationService"
         7: .line 416
            aload 2 /* re */
         8: .line 415
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // android.os.RemoteException re
         9: .line 418
      StackMap locals:
      StackMap stack:
            return
        end local 1 // android.view.accessibility.IAccessibilityManager manager
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Landroid/app/UiAutomationConnection;
            2   10     1  manager  Landroid/view/accessibility/IAccessibilityManager;
            6    9     2       re  Landroid/os/RemoteException;
      Exception table:
        from    to  target  type
           2     4       5  Class android.os.RemoteException

  private void storeRotationStateLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 422
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            invokeinterface android.view.IWindowManager.isRotationFrozen:()Z
            ifeq 4
         1: .line 425
            aload 0 /* this */
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            invokeinterface android.view.IWindowManager.getDefaultDisplayRotation:()I
            putfield android.app.UiAutomationConnection.mInitialFrozenRotation:I
         2: .line 427
            goto 4
      StackMap locals:
      StackMap stack: android.os.RemoteException
         3: pop
         4: .line 430
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/app/UiAutomationConnection;
      Exception table:
        from    to  target  type
           0     2       3  Class android.os.RemoteException

  private void restoreRotationStateLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 434
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mInitialFrozenRotation:I
            iconst_m1
            if_icmpeq 3
         1: .line 437
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mInitialFrozenRotation:I
            invokeinterface android.view.IWindowManager.freezeRotation:(I)V
         2: .line 438
            goto 6
         3: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mWindowManager:Landroid/view/IWindowManager;
            invokeinterface android.view.IWindowManager.thawRotation:()V
         4: .line 443
            goto 6
      StackMap locals:
      StackMap stack: android.os.RemoteException
         5: pop
         6: .line 446
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Landroid/app/UiAutomationConnection;
      Exception table:
        from    to  target  type
           0     4       5  Class android.os.RemoteException

  private boolean isConnectedLocked();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 449
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mClient:Landroid/accessibilityservice/IAccessibilityServiceClient;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/app/UiAutomationConnection;

  private void throwIfShutdownLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 453
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mIsShutdown:Z
            ifeq 2
         1: .line 454
            new java.lang.IllegalStateException
            dup
            ldc "Connection shutdown!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 456
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/app/UiAutomationConnection;

  private void throwIfNotConnectedLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 459
            aload 0 /* this */
            invokevirtual android.app.UiAutomationConnection.isConnectedLocked:()Z
            ifne 2
         1: .line 460
            new java.lang.IllegalStateException
            dup
            ldc "Not connected!"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 462
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/app/UiAutomationConnection;

  private void throwIfCalledByNotTrustedUidLocked();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // android.app.UiAutomationConnection this
         0: .line 465
            invokestatic android.os.Binder.getCallingUid:()I
            istore 1 /* callingUid */
        start local 1 // int callingUid
         1: .line 466
            iload 1 /* callingUid */
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mOwningUid:I
            if_icmpeq 4
            aload 0 /* this */
            getfield android.app.UiAutomationConnection.mOwningUid:I
            sipush 1000
            if_icmpeq 4
         2: .line 467
            iload 1 /* callingUid */
            ifeq 4
         3: .line 468
            new java.lang.SecurityException
            dup
            ldc "Calling from not trusted UID!"
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 470
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // int callingUid
        end local 0 // android.app.UiAutomationConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Landroid/app/UiAutomationConnection;
            1    5     1  callingUid  I
}
SourceFile: "UiAutomationConnection.java"
NestMembers:
  android.app.UiAutomationConnection$1  android.app.UiAutomationConnection$Repeater
InnerClasses:
  public abstract Stub = android.app.IUiAutomationConnection$Stub of android.app.IUiAutomationConnection
  android.app.UiAutomationConnection$1
  public Repeater = android.app.UiAutomationConnection$Repeater of android.app.UiAutomationConnection
  public abstract Stub = android.content.pm.IPackageManager$Stub of android.content.pm.IPackageManager
  public abstract Stub = android.view.IWindowManager$Stub of android.view.IWindowManager
  public abstract Stub = android.view.accessibility.IAccessibilityManager$Stub of android.view.accessibility.IAccessibilityManager