Add TRACE_TAG_AIDL to SystemApi for mainline modules

Test: manual

Change-Id: I76de5146f49256884e2de88dcb42789365e5d081
Bug: 236441443
This commit is contained in:
Parth Sane
2022-11-08 15:37:08 +00:00
parent 18b88655a4
commit 1eb9a2e634
2 changed files with 2 additions and 0 deletions

View File

@@ -382,6 +382,7 @@ package android.os {
method public static void traceBegin(long, @NonNull String);
method public static void traceCounter(long, @NonNull String, int);
method public static void traceEnd(long);
field public static final long TRACE_TAG_AIDL = 16777216L; // 0x1000000L
field public static final long TRACE_TAG_NETWORK = 2097152L; // 0x200000L
}

View File

@@ -100,6 +100,7 @@ public final class Trace {
/** @hide */
public static final long TRACE_TAG_VIBRATOR = 1L << 23;
/** @hide */
@SystemApi(client = MODULE_LIBRARIES)
public static final long TRACE_TAG_AIDL = 1L << 24;
/** @hide */
public static final long TRACE_TAG_NNAPI = 1L << 25;