- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
46 lines
2.0 KiB
Java
46 lines
2.0 KiB
Java
package androidx.core.os;
|
|
|
|
import android.os.Handler;
|
|
import kotlin.jvm.functions.Function0;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class HandlerKt {
|
|
public static final Runnable postDelayed(Handler handler, long j, Object obj, Function0 function0) {
|
|
HandlerKt$postDelayed$runnable$1 handlerKt$postDelayed$runnable$1 = new HandlerKt$postDelayed$runnable$1(function0);
|
|
if (obj == null) {
|
|
handler.postDelayed(handlerKt$postDelayed$runnable$1, j);
|
|
} else {
|
|
HandlerCompat.postDelayed(handler, handlerKt$postDelayed$runnable$1, obj, j);
|
|
}
|
|
return handlerKt$postDelayed$runnable$1;
|
|
}
|
|
|
|
public static /* synthetic */ Runnable postDelayed$default(Handler handler, long j, Object obj, Function0 function0, int i, Object obj2) {
|
|
if ((i & 2) != 0) {
|
|
obj = null;
|
|
}
|
|
HandlerKt$postDelayed$runnable$1 handlerKt$postDelayed$runnable$1 = new HandlerKt$postDelayed$runnable$1(function0);
|
|
if (obj == null) {
|
|
handler.postDelayed(handlerKt$postDelayed$runnable$1, j);
|
|
} else {
|
|
HandlerCompat.postDelayed(handler, handlerKt$postDelayed$runnable$1, obj, j);
|
|
}
|
|
return handlerKt$postDelayed$runnable$1;
|
|
}
|
|
|
|
public static final Runnable postAtTime(Handler handler, long j, Object obj, Function0 function0) {
|
|
HandlerKt$postAtTime$runnable$1 handlerKt$postAtTime$runnable$1 = new HandlerKt$postAtTime$runnable$1(function0);
|
|
handler.postAtTime(handlerKt$postAtTime$runnable$1, obj, j);
|
|
return handlerKt$postAtTime$runnable$1;
|
|
}
|
|
|
|
public static /* synthetic */ Runnable postAtTime$default(Handler handler, long j, Object obj, Function0 function0, int i, Object obj2) {
|
|
if ((i & 2) != 0) {
|
|
obj = null;
|
|
}
|
|
HandlerKt$postAtTime$runnable$1 handlerKt$postAtTime$runnable$1 = new HandlerKt$postAtTime$runnable$1(function0);
|
|
handler.postAtTime(handlerKt$postAtTime$runnable$1, obj, j);
|
|
return handlerKt$postAtTime$runnable$1;
|
|
}
|
|
}
|