Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
package kotlinx.coroutines.internal;
import kotlin.coroutines.CoroutineContext;
import kotlin.coroutines.EmptyCoroutineContext;
import kotlin.jvm.functions.Function2;
import kotlin.jvm.internal.Intrinsics;
import kotlinx.coroutines.ThreadContextElement;
/* loaded from: classes5.dex */
public final class ThreadLocalElement implements ThreadContextElement {
public final CoroutineContext.Key key;
public final ThreadLocal threadLocal;
public final Object value;
@Override // kotlin.coroutines.CoroutineContext.Element
public CoroutineContext.Key getKey() {
return this.key;
}
public ThreadLocalElement(Object obj, ThreadLocal threadLocal) {
this.value = obj;
this.threadLocal = threadLocal;
this.key = new ThreadLocalKey(threadLocal);
}
@Override // kotlin.coroutines.CoroutineContext
public Object fold(Object obj, Function2 function2) {
return ThreadContextElement.DefaultImpls.fold(this, obj, function2);
}
@Override // kotlin.coroutines.CoroutineContext
public CoroutineContext plus(CoroutineContext coroutineContext) {
return ThreadContextElement.DefaultImpls.plus(this, coroutineContext);
}
@Override // kotlinx.coroutines.ThreadContextElement
public Object updateThreadContext(CoroutineContext coroutineContext) {
Object obj = this.threadLocal.get();
this.threadLocal.set(this.value);
return obj;
}
@Override // kotlinx.coroutines.ThreadContextElement
public void restoreThreadContext(CoroutineContext coroutineContext, Object obj) {
this.threadLocal.set(obj);
}
@Override // kotlin.coroutines.CoroutineContext
public CoroutineContext minusKey(CoroutineContext.Key key) {
return Intrinsics.areEqual(getKey(), key) ? EmptyCoroutineContext.INSTANCE : this;
}
@Override // kotlin.coroutines.CoroutineContext.Element, kotlin.coroutines.CoroutineContext
public CoroutineContext.Element get(CoroutineContext.Key key) {
if (!Intrinsics.areEqual(getKey(), key)) {
return null;
}
Intrinsics.checkNotNull(this, "null cannot be cast to non-null type E of kotlinx.coroutines.internal.ThreadLocalElement.get");
return this;
}
public String toString() {
return "ThreadLocal(value=" + this.value + ", threadLocal = " + this.threadLocal + ')';
}
}