We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a393a9 + 15415f5 commit c9aa32eCopy full SHA for c9aa32e
1 file changed
services/java/com/android/server/PowerManagerService.java
@@ -1103,6 +1103,8 @@ private static String dumpPowerState(int state) {
1103
? "SCREEN_BRIGHT_BIT " : "")
1104
+ (((state & SCREEN_ON_BIT) != 0)
1105
? "SCREEN_ON_BIT " : "")
1106
+ + (((state & BUTTON_BRIGHT_BIT) != 0)
1107
+ ? "BUTTON_BRIGHT_BIT " : "")
1108
+ (((state & BATTERY_LOW_BIT) != 0)
1109
? "BATTERY_LOW_BIT " : "");
1110
}
0 commit comments