public final class android.service.gatekeeper.GateKeeperResponse implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.service.gatekeeper.GateKeeperResponse
  super_class: java.lang.Object
{
  public static final int RESPONSE_ERROR;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  public static final int RESPONSE_OK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int RESPONSE_RETRY;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final int mResponseCode;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private byte[] mPayload;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

  public static final android.os.Parcelable$Creator<android.service.gatekeeper.GateKeeperResponse> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/service/gatekeeper/GateKeeperResponse;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 70
            new android.service.gatekeeper.GateKeeperResponse$1
            dup
            invokespecial android.service.gatekeeper.GateKeeperResponse$1.<init>:()V
         1: .line 69
            putstatic android.service.gatekeeper.GateKeeperResponse.CREATOR:Landroid/os/Parcelable$Creator;
         2: .line 97
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
        start local 1 // int responseCode
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            iload 1 /* responseCode */
            putfield android.service.gatekeeper.GateKeeperResponse.mResponseCode:I
         2: .line 43
            return
        end local 1 // int responseCode
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Landroid/service/gatekeeper/GateKeeperResponse;
            0    3     1  responseCode  I
    MethodParameters:
              Name  Flags
      responseCode  

  public static android.service.gatekeeper.GateKeeperResponse createGenericResponse(int);
    descriptor: (I)Landroid/service/gatekeeper/GateKeeperResponse;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int responseCode
         0: .line 47
            new android.service.gatekeeper.GateKeeperResponse
            dup
            iload 0 /* responseCode */
            invokespecial android.service.gatekeeper.GateKeeperResponse.<init>:(I)V
            areturn
        end local 0 // int responseCode
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  responseCode  I
    RuntimeInvisibleAnnotations: 
      com.android.internal.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.android.internal.annotations.VisibleForTesting()
    MethodParameters:
              Name  Flags
      responseCode  

  private static android.service.gatekeeper.GateKeeperResponse createRetryResponse(int);
    descriptor: (I)Landroid/service/gatekeeper/GateKeeperResponse;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // int timeout
         0: .line 51
            new android.service.gatekeeper.GateKeeperResponse
            dup
            iconst_1
            invokespecial android.service.gatekeeper.GateKeeperResponse.<init>:(I)V
            astore 1 /* response */
        start local 1 // android.service.gatekeeper.GateKeeperResponse response
         1: .line 52
            aload 1 /* response */
            iload 0 /* timeout */
            putfield android.service.gatekeeper.GateKeeperResponse.mTimeout:I
         2: .line 53
            aload 1 /* response */
            areturn
        end local 1 // android.service.gatekeeper.GateKeeperResponse response
        end local 0 // int timeout
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0   timeout  I
            1    3     1  response  Landroid/service/gatekeeper/GateKeeperResponse;
    MethodParameters:
         Name  Flags
      timeout  

  public static android.service.gatekeeper.GateKeeperResponse createOkResponse(byte[], boolean);
    descriptor: ([BZ)Landroid/service/gatekeeper/GateKeeperResponse;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // byte[] payload
        start local 1 // boolean shouldReEnroll
         0: .line 58
            new android.service.gatekeeper.GateKeeperResponse
            dup
            iconst_0
            invokespecial android.service.gatekeeper.GateKeeperResponse.<init>:(I)V
            astore 2 /* response */
        start local 2 // android.service.gatekeeper.GateKeeperResponse response
         1: .line 59
            aload 2 /* response */
            aload 0 /* payload */
            putfield android.service.gatekeeper.GateKeeperResponse.mPayload:[B
         2: .line 60
            aload 2 /* response */
            iload 1 /* shouldReEnroll */
            putfield android.service.gatekeeper.GateKeeperResponse.mShouldReEnroll:Z
         3: .line 61
            aload 2 /* response */
            areturn
        end local 2 // android.service.gatekeeper.GateKeeperResponse response
        end local 1 // boolean shouldReEnroll
        end local 0 // byte[] payload
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0         payload  [B
            0    4     1  shouldReEnroll  Z
            1    4     2        response  Landroid/service/gatekeeper/GateKeeperResponse;
    RuntimeInvisibleAnnotations: 
      com.android.internal.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.android.internal.annotations.VisibleForTesting()
    MethodParameters:
                Name  Flags
      payload         
      shouldReEnroll  

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
         0: .line 66
            iconst_0
            ireturn
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/service/gatekeeper/GateKeeperResponse;

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 101
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mResponseCode:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         1: .line 102
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mResponseCode:I
            iconst_1
            if_icmpne 4
         2: .line 103
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mTimeout:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         3: .line 104
            goto 13
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mResponseCode:I
            ifne 13
         5: .line 105
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mShouldReEnroll:Z
            ifeq 6
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack: android.os.Parcel
         6: iconst_0
      StackMap locals: android.service.gatekeeper.GateKeeperResponse android.os.Parcel int
      StackMap stack: android.os.Parcel int
         7: invokevirtual android.os.Parcel.writeInt:(I)V
         8: .line 106
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mPayload:[B
            ifnull 12
         9: .line 107
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mPayload:[B
            arraylength
            invokevirtual android.os.Parcel.writeInt:(I)V
        10: .line 108
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mPayload:[B
            invokevirtual android.os.Parcel.writeByteArray:([B)V
        11: .line 109
            goto 13
        12: .line 110
      StackMap locals:
      StackMap stack:
            aload 1 /* dest */
            iconst_0
            invokevirtual android.os.Parcel.writeInt:(I)V
        13: .line 113
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Landroid/service/gatekeeper/GateKeeperResponse;
            0   14     1   dest  Landroid/os/Parcel;
            0   14     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  

  public byte[] getPayload();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
         0: .line 116
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mPayload:[B
            areturn
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/service/gatekeeper/GateKeeperResponse;

  public int getTimeout();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
         0: .line 120
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mTimeout:I
            ireturn
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/service/gatekeeper/GateKeeperResponse;

  public boolean getShouldReEnroll();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
         0: .line 124
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mShouldReEnroll:Z
            ireturn
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/service/gatekeeper/GateKeeperResponse;

  public int getResponseCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.service.gatekeeper.GateKeeperResponse this
         0: .line 128
            aload 0 /* this */
            getfield android.service.gatekeeper.GateKeeperResponse.mResponseCode:I
            ireturn
        end local 0 // android.service.gatekeeper.GateKeeperResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/service/gatekeeper/GateKeeperResponse;
}
SourceFile: "GateKeeperResponse.java"
NestMembers:
  android.service.gatekeeper.GateKeeperResponse$1
InnerClasses:
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable
  android.service.gatekeeper.GateKeeperResponse$1