Loading packages/SystemUI/src/com/android/systemui/doze/DozeLog.java +3 −2 Original line number Diff line number Diff line Loading @@ -95,10 +95,11 @@ public class DozeLog { log("dozing " + dozing); } public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded) { public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded, boolean screenOnFromTouch) { if (!ENABLED) return; log("fling expand=" + expand + " aboveThreshold=" + aboveThreshold + " thresholdNeeded=" + thresholdNeeded); + thresholdNeeded + " screenOnFromTouch=" + screenOnFromTouch); } public static void traceEmergencyCall() { Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +2 −1 Original line number Diff line number Diff line Loading @@ -337,7 +337,8 @@ public abstract class PanelView extends FrameLayout { boolean expand = flingExpands(vel, vectorVel); onTrackingStopped(expand); DozeLog.traceFling(expand, mTouchAboveFalsingThreshold, mStatusBar.isFalsingThresholdNeeded()); mStatusBar.isFalsingThresholdNeeded(), mStatusBar.isScreenOnComingFromTouch()); fling(vel, expand); mUpdateFlingOnLayout = expand && mPanelClosedOnDown && !mHasLayoutedSinceDown; if (mUpdateFlingOnLayout) { Loading Loading
packages/SystemUI/src/com/android/systemui/doze/DozeLog.java +3 −2 Original line number Diff line number Diff line Loading @@ -95,10 +95,11 @@ public class DozeLog { log("dozing " + dozing); } public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded) { public static void traceFling(boolean expand, boolean aboveThreshold, boolean thresholdNeeded, boolean screenOnFromTouch) { if (!ENABLED) return; log("fling expand=" + expand + " aboveThreshold=" + aboveThreshold + " thresholdNeeded=" + thresholdNeeded); + thresholdNeeded + " screenOnFromTouch=" + screenOnFromTouch); } public static void traceEmergencyCall() { Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +2 −1 Original line number Diff line number Diff line Loading @@ -337,7 +337,8 @@ public abstract class PanelView extends FrameLayout { boolean expand = flingExpands(vel, vectorVel); onTrackingStopped(expand); DozeLog.traceFling(expand, mTouchAboveFalsingThreshold, mStatusBar.isFalsingThresholdNeeded()); mStatusBar.isFalsingThresholdNeeded(), mStatusBar.isScreenOnComingFromTouch()); fling(vel, expand); mUpdateFlingOnLayout = expand && mPanelClosedOnDown && !mHasLayoutedSinceDown; if (mUpdateFlingOnLayout) { Loading