- 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
30 lines
741 B
Java
30 lines
741 B
Java
package androidx.tracing;
|
|
|
|
import androidx.annotation.DoNotInline;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
@RequiresApi(29)
|
|
/* loaded from: classes.dex */
|
|
final class TraceApi29Impl {
|
|
private TraceApi29Impl() {
|
|
}
|
|
|
|
@DoNotInline
|
|
public static boolean isEnabled() {
|
|
return android.os.Trace.isEnabled();
|
|
}
|
|
|
|
public static void beginAsyncSection(@NonNull String str, int i) {
|
|
android.os.Trace.beginAsyncSection(str, i);
|
|
}
|
|
|
|
public static void endAsyncSection(@NonNull String str, int i) {
|
|
android.os.Trace.endAsyncSection(str, i);
|
|
}
|
|
|
|
public static void setCounter(@NonNull String str, int i) {
|
|
android.os.Trace.setCounter(str, i);
|
|
}
|
|
}
|