Loading core/java/com/android/internal/util/LatencyTracker.java +11 −2 Original line number Diff line number Diff line Loading @@ -147,8 +147,17 @@ public class LatencyTracker { } mStartRtc.delete(action); Trace.asyncTraceEnd(Trace.TRACE_TAG_APP, NAMES[action], 0); long duration = endRtc - startRtc; logAction(action, (int)(endRtc - startRtc)); } /** * Logs an action that has started and ended. This needs to be called from the main thread. * * @param action The action to end. One of the ACTION_* values. * @param duration The duration of the action in ms. */ public static void logAction(int action, int duration) { Log.i(TAG, "action=" + action + " latency=" + duration); EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, (int) duration); EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, duration); } } packages/SystemUI/shared/src/com/android/systemui/shared/system/LatencyTrackerCompat.java 0 → 100644 +34 −0 Original line number Diff line number Diff line /* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package com.android.systemui.shared.system; import android.content.Context; import com.android.internal.util.LatencyTracker; /** * @see LatencyTracker */ public class LatencyTrackerCompat { public static boolean isEnabled(Context context) { return LatencyTracker.isEnabled(context); } public static void logToggleRecents(int duration) { LatencyTracker.logAction(LatencyTracker.ACTION_TOGGLE_RECENTS, duration); } } No newline at end of file Loading
core/java/com/android/internal/util/LatencyTracker.java +11 −2 Original line number Diff line number Diff line Loading @@ -147,8 +147,17 @@ public class LatencyTracker { } mStartRtc.delete(action); Trace.asyncTraceEnd(Trace.TRACE_TAG_APP, NAMES[action], 0); long duration = endRtc - startRtc; logAction(action, (int)(endRtc - startRtc)); } /** * Logs an action that has started and ended. This needs to be called from the main thread. * * @param action The action to end. One of the ACTION_* values. * @param duration The duration of the action in ms. */ public static void logAction(int action, int duration) { Log.i(TAG, "action=" + action + " latency=" + duration); EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, (int) duration); EventLog.writeEvent(EventLogTags.SYSUI_LATENCY, action, duration); } }
packages/SystemUI/shared/src/com/android/systemui/shared/system/LatencyTrackerCompat.java 0 → 100644 +34 −0 Original line number Diff line number Diff line /* * Copyright (C) 2018 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package com.android.systemui.shared.system; import android.content.Context; import com.android.internal.util.LatencyTracker; /** * @see LatencyTracker */ public class LatencyTrackerCompat { public static boolean isEnabled(Context context) { return LatencyTracker.isEnabled(context); } public static void logToggleRecents(int duration) { LatencyTracker.logAction(LatencyTracker.ACTION_TOGGLE_RECENTS, duration); } } No newline at end of file