- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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);
|
|
}
|
|
}
|