public class com.android.backupconfirm.BackupRestoreConfirmation extends android.app.Activity
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.android.backupconfirm.BackupRestoreConfirmation
  super_class: android.app.Activity
{
  static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "BackupRestoreConfirmation"

  static final boolean DEBUG;
    descriptor: Z
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  static final java.lang.String KEY_DID_ACKNOWLEDGE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "did_acknowledge"

  static final java.lang.String KEY_TOKEN;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "token"

  static final java.lang.String KEY_ACTION;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "action"

  static final int MSG_START_BACKUP;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  static final int MSG_BACKUP_PACKAGE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  static final int MSG_END_BACKUP;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  static final int MSG_START_RESTORE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 11

  static final int MSG_RESTORE_PACKAGE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 12

  static final int MSG_END_RESTORE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 13

  static final int MSG_TIMEOUT;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 100

  android.os.Handler mHandler;
    descriptor: Landroid/os/Handler;
    flags: (0x0000) 

  android.app.backup.IBackupManager mBackupManager;
    descriptor: Landroid/app/backup/IBackupManager;
    flags: (0x0000) 

  android.os.storage.IStorageManager mStorageManager;
    descriptor: Landroid/os/storage/IStorageManager;
    flags: (0x0000) 

  com.android.backupconfirm.BackupRestoreConfirmation$FullObserver mObserver;
    descriptor: Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
    flags: (0x0000) 

  int mToken;
    descriptor: I
    flags: (0x0000) 

  boolean mIsEncrypted;
    descriptor: Z
    flags: (0x0000) 

  boolean mDidAcknowledge;
    descriptor: Z
    flags: (0x0000) 

  java.lang.String mAction;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  android.widget.TextView mStatusView;
    descriptor: Landroid/widget/TextView;
    flags: (0x0000) 

  android.widget.TextView mCurPassword;
    descriptor: Landroid/widget/TextView;
    flags: (0x0000) 

  android.widget.TextView mEncPassword;
    descriptor: Landroid/widget/TextView;
    flags: (0x0000) 

  android.widget.Button mAllowButton;
    descriptor: Landroid/widget/Button;
    flags: (0x0000) 

  android.widget.Button mDenyButton;
    descriptor: Landroid/widget/Button;
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 51
            aload 0 /* this */
            invokespecial android.app.Activity.<init>:()V
            return
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;

  public void onCreate(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
        start local 1 // android.os.Bundle icicle
         0: .line 137
            aload 0 /* this */
            aload 1 /* icicle */
            invokespecial android.app.Activity.onCreate:(Landroid/os/Bundle;)V
         1: .line 139
            aload 0 /* this */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.getIntent:()Landroid/content/Intent;
            astore 2 /* intent */
        start local 2 // android.content.Intent intent
         2: .line 141
            aload 0 /* this */
            aload 2 /* intent */
            aload 1 /* icicle */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.setTokenOrFinish:(Landroid/content/Intent;Landroid/os/Bundle;)Z
            istore 3 /* tokenValid */
        start local 3 // boolean tokenValid
         3: .line 142
            iload 3 /* tokenValid */
            ifne 5
         4: .line 143
            return
         5: .line 146
      StackMap locals: android.content.Intent int
      StackMap stack:
            aload 0 /* this */
            ldc "backup"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
            invokestatic android.app.backup.IBackupManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/app/backup/IBackupManager;
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mBackupManager:Landroid/app/backup/IBackupManager;
         6: .line 147
            aload 0 /* this */
            ldc "mount"
            invokestatic android.os.ServiceManager.getService:(Ljava/lang/String;)Landroid/os/IBinder;
            invokestatic android.os.storage.IStorageManager$Stub.asInterface:(Landroid/os/IBinder;)Landroid/os/storage/IStorageManager;
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mStorageManager:Landroid/os/storage/IStorageManager;
         7: .line 149
            aload 0 /* this */
            new com.android.backupconfirm.BackupRestoreConfirmation$ObserverHandler
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.getApplicationContext:()Landroid/content/Context;
            invokespecial com.android.backupconfirm.BackupRestoreConfirmation$ObserverHandler.<init>:(Lcom/android/backupconfirm/BackupRestoreConfirmation;Landroid/content/Context;)V
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mHandler:Landroid/os/Handler;
         8: .line 150
            aload 0 /* this */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.getLastNonConfigurationInstance:()Ljava/lang/Object;
            astore 4 /* oldObserver */
        start local 4 // java.lang.Object oldObserver
         9: .line 151
            aload 4 /* oldObserver */
            ifnonnull 12
        10: .line 152
            aload 0 /* this */
            new com.android.backupconfirm.BackupRestoreConfirmation$FullObserver
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mHandler:Landroid/os/Handler;
            invokespecial com.android.backupconfirm.BackupRestoreConfirmation$FullObserver.<init>:(Lcom/android/backupconfirm/BackupRestoreConfirmation;Landroid/os/Handler;)V
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mObserver:Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
        11: .line 153
            goto 14
        12: .line 154
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            aload 4 /* oldObserver */
            checkcast com.android.backupconfirm.BackupRestoreConfirmation$FullObserver
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mObserver:Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
        13: .line 155
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mObserver:Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mHandler:Landroid/os/Handler;
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation$FullObserver.setHandler:(Landroid/os/Handler;)V
        14: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* intent */
            aload 1 /* icicle */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.setViews:(Landroid/content/Intent;Landroid/os/Bundle;)V
        15: .line 159
            return
        end local 4 // java.lang.Object oldObserver
        end local 3 // boolean tokenValid
        end local 2 // android.content.Intent intent
        end local 1 // android.os.Bundle icicle
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
            0   16     1       icicle  Landroid/os/Bundle;
            2   16     2       intent  Landroid/content/Intent;
            3   16     3   tokenValid  Z
            9   16     4  oldObserver  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      icicle  

  public void onNewIntent(android.content.Intent);
    descriptor: (Landroid/content/Intent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
        start local 1 // android.content.Intent intent
         0: .line 163
            aload 0 /* this */
            aload 1 /* intent */
            invokespecial android.app.Activity.onNewIntent:(Landroid/content/Intent;)V
         1: .line 164
            aload 0 /* this */
            aload 1 /* intent */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.setIntent:(Landroid/content/Intent;)V
         2: .line 166
            aload 0 /* this */
            aload 1 /* intent */
            aconst_null
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.setTokenOrFinish:(Landroid/content/Intent;Landroid/os/Bundle;)Z
            istore 2 /* tokenValid */
        start local 2 // boolean tokenValid
         3: .line 167
            iload 2 /* tokenValid */
            ifne 5
         4: .line 168
            return
         5: .line 171
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* intent */
            aconst_null
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.setViews:(Landroid/content/Intent;Landroid/os/Bundle;)V
         6: .line 172
            return
        end local 2 // boolean tokenValid
        end local 1 // android.content.Intent intent
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
            0    7     1      intent  Landroid/content/Intent;
            3    7     2  tokenValid  Z
    MethodParameters:
        Name  Flags
      intent  

  private boolean setTokenOrFinish(android.content.Intent, android.os.Bundle);
    descriptor: (Landroid/content/Intent;Landroid/os/Bundle;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
        start local 1 // android.content.Intent intent
        start local 2 // android.os.Bundle icicle
         0: .line 175
            aload 0 /* this */
            aload 1 /* intent */
            ldc "conftoken"
            iconst_m1
            invokevirtual android.content.Intent.getIntExtra:(Ljava/lang/String;I)I
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
         1: .line 178
            aload 2 /* icicle */
            ifnull 3
         2: .line 179
            aload 0 /* this */
            aload 2 /* icicle */
            ldc "token"
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
            invokevirtual android.os.Bundle.getInt:(Ljava/lang/String;I)I
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
         3: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
            ifge 7
         4: .line 183
            ldc "BackupRestoreConfirmation"
            ldc "Backup/restore confirmation requested but no token passed!"
            invokestatic android.util.Slog.e:(Ljava/lang/String;Ljava/lang/String;)I
            pop
         5: .line 184
            aload 0 /* this */
            invokevirtual com.android.backupconfirm.BackupRestoreConfirmation.finish:()V
         6: .line 185
            iconst_0
            ireturn
         7: .line 188
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // android.os.Bundle icicle
        end local 1 // android.content.Intent intent
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
            0    8     1  intent  Landroid/content/Intent;
            0    8     2  icicle  Landroid/os/Bundle;
    MethodParameters:
        Name  Flags
      intent  
      icicle  

  private void setViews(android.content.Intent, android.os.Bundle);
    descriptor: (Landroid/content/Intent;Landroid/os/Bundle;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 202
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n\tR cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
    MethodParameters:
        Name  Flags
      intent  
      icicle  

  private void monitorEncryptionPassword();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 270
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mAllowButton:Landroid/widget/Button;
            iconst_0
            invokevirtual android.widget.Button.setEnabled:(Z)V
         1: .line 271
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mEncPassword:Landroid/widget/TextView;
            new com.android.backupconfirm.BackupRestoreConfirmation$1
            dup
            aload 0 /* this */
            invokespecial com.android.backupconfirm.BackupRestoreConfirmation$1.<init>:(Lcom/android/backupconfirm/BackupRestoreConfirmation;)V
            invokevirtual android.widget.TextView.addTextChangedListener:(Landroid/text/TextWatcher;)V
         2: .line 283
            return
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;

  public java.lang.Object onRetainNonConfigurationInstance();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 288
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mObserver:Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
            areturn
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;

  protected void onSaveInstanceState(android.os.Bundle);
    descriptor: (Landroid/os/Bundle;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
        start local 1 // android.os.Bundle outState
         0: .line 293
            aload 1 /* outState */
            ldc "did_acknowledge"
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mDidAcknowledge:Z
            invokevirtual android.os.Bundle.putBoolean:(Ljava/lang/String;Z)V
         1: .line 294
            aload 1 /* outState */
            ldc "token"
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
            invokevirtual android.os.Bundle.putInt:(Ljava/lang/String;I)V
         2: .line 295
            aload 1 /* outState */
            ldc "action"
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mAction:Ljava/lang/String;
            invokevirtual android.os.Bundle.putString:(Ljava/lang/String;Ljava/lang/String;)V
         3: .line 296
            return
        end local 1 // android.os.Bundle outState
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
            0    4     1  outState  Landroid/os/Bundle;
    MethodParameters:
          Name  Flags
      outState  

  void sendAcknowledgement(int, boolean, android.app.backup.IFullBackupRestoreObserver);
    descriptor: (IZLandroid/app/backup/IFullBackupRestoreObserver;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
        start local 1 // int token
        start local 2 // boolean allow
        start local 3 // android.app.backup.IFullBackupRestoreObserver observer
         0: .line 299
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mDidAcknowledge:Z
            ifne 11
         1: .line 300
            aload 0 /* this */
            iconst_1
            putfield com.android.backupconfirm.BackupRestoreConfirmation.mDidAcknowledge:Z
         2: .line 303
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mEncPassword:Landroid/widget/TextView;
            invokevirtual android.widget.TextView.getText:()Ljava/lang/CharSequence;
            astore 4 /* encPassword */
        start local 4 // java.lang.CharSequence encPassword
         3: .line 304
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mBackupManager:Landroid/app/backup/IBackupManager;
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mToken:I
         4: .line 305
            iload 2 /* allow */
         5: .line 306
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mCurPassword:Landroid/widget/TextView;
            invokevirtual android.widget.TextView.getText:()Ljava/lang/CharSequence;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
         6: .line 307
            aload 4 /* encPassword */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
         7: .line 308
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mObserver:Lcom/android/backupconfirm/BackupRestoreConfirmation$FullObserver;
         8: .line 304
            invokeinterface android.app.backup.IBackupManager.acknowledgeFullBackupOrRestore:(IZLjava/lang/String;Ljava/lang/String;Landroid/app/backup/IFullBackupRestoreObserver;)V
        end local 4 // java.lang.CharSequence encPassword
         9: .line 309
            goto 11
      StackMap locals:
      StackMap stack: android.os.RemoteException
        10: pop
        11: .line 313
      StackMap locals:
      StackMap stack:
            return
        end local 3 // android.app.backup.IFullBackupRestoreObserver observer
        end local 2 // boolean allow
        end local 1 // int token
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0         this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
            0   12     1        token  I
            0   12     2        allow  Z
            0   12     3     observer  Landroid/app/backup/IFullBackupRestoreObserver;
            3    9     4  encPassword  Ljava/lang/CharSequence;
      Exception table:
        from    to  target  type
           2     9      10  Class android.os.RemoteException
    MethodParameters:
          Name  Flags
      token     
      allow     
      observer  

  boolean deviceIsEncrypted();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 317
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mStorageManager:Landroid/os/storage/IStorageManager;
            invokeinterface android.os.storage.IStorageManager.getEncryptionState:()I
         1: .line 318
            iconst_1
         2: .line 317
            if_icmpeq 7
         3: .line 319
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mStorageManager:Landroid/os/storage/IStorageManager;
            invokeinterface android.os.storage.IStorageManager.getPasswordType:()I
         4: .line 320
            iconst_1
         5: .line 319
            if_icmpeq 7
         6: .line 317
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
         8: ireturn
         9: .line 321
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
        10: .line 324
            ldc "BackupRestoreConfirmation"
            new java.lang.StringBuilder
            dup
            ldc "Unable to communicate with storagemanager service: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual java.lang.Exception.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic android.util.Slog.e:(Ljava/lang/String;Ljava/lang/String;)I
            pop
        11: .line 325
            iconst_1
            ireturn
        end local 1 // java.lang.Exception e
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
           10   12     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     8       9  Class java.lang.Exception

  boolean haveBackupPassword();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
         0: .line 331
            aload 0 /* this */
            getfield com.android.backupconfirm.BackupRestoreConfirmation.mBackupManager:Landroid/app/backup/IBackupManager;
            invokeinterface android.app.backup.IBackupManager.hasBackupPassword:()Z
         1: ireturn
         2: .line 332
      StackMap locals:
      StackMap stack: android.os.RemoteException
            pop
         3: .line 333
            iconst_1
            ireturn
        end local 0 // com.android.backupconfirm.BackupRestoreConfirmation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/android/backupconfirm/BackupRestoreConfirmation;
      Exception table:
        from    to  target  type
           0     1       2  Class android.os.RemoteException
}
SourceFile: "BackupRestoreConfirmation.java"
NestMembers:
  com.android.backupconfirm.BackupRestoreConfirmation$1  com.android.backupconfirm.BackupRestoreConfirmation$2  com.android.backupconfirm.BackupRestoreConfirmation$3  com.android.backupconfirm.BackupRestoreConfirmation$FullObserver  com.android.backupconfirm.BackupRestoreConfirmation$ObserverHandler
InnerClasses:
  public abstract Stub = android.app.backup.IBackupManager$Stub of android.app.backup.IBackupManager
  public abstract Stub = android.os.storage.IStorageManager$Stub of android.os.storage.IStorageManager
  com.android.backupconfirm.BackupRestoreConfirmation$1
  FullObserver = com.android.backupconfirm.BackupRestoreConfirmation$FullObserver of com.android.backupconfirm.BackupRestoreConfirmation
  ObserverHandler = com.android.backupconfirm.BackupRestoreConfirmation$ObserverHandler of com.android.backupconfirm.BackupRestoreConfirmation