Guest User

Untitled

a guest
Apr 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. private int getScreenAnimationMode(Context paramContext)
  2. {
  3. ContentResolver localContentResolver = paramContext.getContentResolver();
  4. if (Settings.System.getInt(localContentResolver, "config_beam_screen_on", 1) != 0);
  5. for (int i = 1; ; i = 0)
  6. {
  7. if (Settings.System.getInt(localContentResolver, "config_beam_screen_off", 1) != 0)
  8. i += 16;
  9. return i;
  10. }
  11. }
  12.  
  13. public void dump(PrintWriter paramPrintWriter, String paramString)
  14. {
  15. paramPrintWriter.println(paramString + "animating=" + this.animating + " targetValue=" + this.targetValue + " curValue=" + this.curValue + " delta=" + this.delta);
  16. }
  17.  
  18. void jumpToTargetLocked()
  19. {
  20. Slog.d("PowerManagerService", "jumpToTargetLocked targetValue=" + this.targetValue + ": " + this.mask);
  21. PowerManagerService.this.setLightBrightness(this.mask, this.targetValue);
  22. int i = this.targetValue;
  23. this.curValue = i;
  24. this.targetValue = -1;
  25. finishAnimationLocked(false, i);
  26. }
  27.  
  28. // ERROR //
  29. public void run()
Add Comment
Please, Sign In to add comment