Add support for AIDL traces for Priv apps

Change-Id: I75c39ebdf87f1068a91c68654b4779eeda4995f0
Test: Manual
Bug: 236441443
This commit is contained in:
Parth Sane
2022-11-22 12:58:06 +00:00
parent 3c318cc21a
commit 1a382346df
3 changed files with 5 additions and 2 deletions

View File

@@ -383,7 +383,6 @@ 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

@@ -9715,6 +9715,10 @@ package android.os {
field public static final int STATUS_WAITING_REBOOT = 5; // 0x5
}
public final class Trace {
field public static final long TRACE_TAG_AIDL = 16777216L; // 0x1000000L
}
public class UpdateEngine {
ctor public UpdateEngine();
method @NonNull @WorkerThread public android.os.UpdateEngine.AllocateSpaceResult allocateSpace(@NonNull String, @NonNull String[]);

View File

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