25 lines
724 B
Java
25 lines
724 B
Java
package androidx.datastore.preferences.protobuf;
|
|
|
|
import java.lang.reflect.Field;
|
|
import java.security.PrivilegedExceptionAction;
|
|
import sun.misc.Unsafe;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class o0 implements PrivilegedExceptionAction {
|
|
public static Unsafe a() {
|
|
for (Field field : Unsafe.class.getDeclaredFields()) {
|
|
field.setAccessible(true);
|
|
Object obj = field.get(null);
|
|
if (Unsafe.class.isInstance(obj)) {
|
|
return (Unsafe) Unsafe.class.cast(obj);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override // java.security.PrivilegedExceptionAction
|
|
public final /* bridge */ /* synthetic */ Object run() {
|
|
return a();
|
|
}
|
|
}
|