zzr.java
4.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
package com.google.android.gms.common.internal;
import android.accounts.Account;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
public abstract interface zzr
extends IInterface
{
public abstract Account getAccount()
throws RemoteException;
public static abstract class zza
extends Binder
implements zzr
{
public static zzr zzbr(IBinder paramIBinder)
{
if (paramIBinder == null) {
return null;
}
IInterface localIInterface = paramIBinder.queryLocalInterface("com.google.android.gms.common.internal.IAccountAccessor");
if ((localIInterface != null) && ((localIInterface instanceof zzr))) {
return (zzr)localIInterface;
}
return new a(paramIBinder);
}
public IBinder asBinder()
{
return this;
}
public boolean onTransact(int paramInt1, Parcel paramParcel1, Parcel paramParcel2, int paramInt2)
throws RemoteException
{
switch (paramInt1)
{
default:
return super.onTransact(paramInt1, paramParcel1, paramParcel2, paramInt2);
case 1598968902:
paramParcel2.writeString("com.google.android.gms.common.internal.IAccountAccessor");
return true;
}
paramParcel1.enforceInterface("com.google.android.gms.common.internal.IAccountAccessor");
paramParcel1 = getAccount();
paramParcel2.writeNoException();
if (paramParcel1 != null)
{
paramParcel2.writeInt(1);
paramParcel1.writeToParcel(paramParcel2, 1);
return true;
}
paramParcel2.writeInt(0);
return true;
}
static final class a
implements zzr
{
private IBinder a;
a(IBinder paramIBinder)
{
this.a = paramIBinder;
}
public final IBinder asBinder()
{
return this.a;
}
/* Error */
public final Account getAccount()
throws RemoteException
{
// Byte code:
// 0: invokestatic 31 android/os/Parcel:obtain ()Landroid/os/Parcel;
// 3: astore_2
// 4: invokestatic 31 android/os/Parcel:obtain ()Landroid/os/Parcel;
// 7: astore_3
// 8: aload_2
// 9: ldc 33
// 11: invokevirtual 37 android/os/Parcel:writeInterfaceToken (Ljava/lang/String;)V
// 14: aload_0
// 15: getfield 18 com/google/android/gms/common/internal/zzr$zza$a:a Landroid/os/IBinder;
// 18: iconst_2
// 19: aload_2
// 20: aload_3
// 21: iconst_0
// 22: invokeinterface 43 5 0
// 27: pop
// 28: aload_3
// 29: invokevirtual 46 android/os/Parcel:readException ()V
// 32: aload_3
// 33: invokevirtual 50 android/os/Parcel:readInt ()I
// 36: ifeq +26 -> 62
// 39: getstatic 56 android/accounts/Account:CREATOR Landroid/os/Parcelable$Creator;
// 42: aload_3
// 43: invokeinterface 62 2 0
// 48: checkcast 52 android/accounts/Account
// 51: astore_1
// 52: aload_3
// 53: invokevirtual 65 android/os/Parcel:recycle ()V
// 56: aload_2
// 57: invokevirtual 65 android/os/Parcel:recycle ()V
// 60: aload_1
// 61: areturn
// 62: aconst_null
// 63: astore_1
// 64: goto -12 -> 52
// 67: astore_1
// 68: aload_3
// 69: invokevirtual 65 android/os/Parcel:recycle ()V
// 72: aload_2
// 73: invokevirtual 65 android/os/Parcel:recycle ()V
// 76: aload_1
// 77: athrow
// Local variable table:
// start length slot name signature
// 0 78 0 this a
// 51 13 1 localAccount Account
// 67 10 1 localObject Object
// 3 70 2 localParcel1 Parcel
// 7 62 3 localParcel2 Parcel
// Exception table:
// from to target type
// 8 52 67 finally
}
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/google/android/gms/common/internal/zzr.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/