Searched defs:runningRemoteAnimation (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DActivityManagerInternal.java290 * @param runningRemoteAnimation True if the process is running a remote animation, false
294 public abstract void setRunningRemoteAnimation(int pid, boolean runningRemoteAnimation); argument
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java132 boolean runningRemoteAnimation; // Is the process currently running a RemoteAnimation? When true field in class:ProcessRecord
347 if (hasTopUi || hasOverlayUi || runningRemoteAnimation) {
350 pw.print(" runningRemoteAnimation="); pw.println(runningRemoteAnimation);
H A DActivityManagerService.java14619 void setRunningRemoteAnimation(int pid, boolean runningRemoteAnimation) { argument
14633 if (pr.runningRemoteAnimation == runningRemoteAnimation) {
14636 pr.runningRemoteAnimation = runningRemoteAnimation;
14638 Slog.i(TAG, "Setting runningRemoteAnimation=" + pr.runningRemoteAnimation
23140 } else if (app.runningRemoteAnimation) {
26583 setRunningRemoteAnimation(int pid, boolean runningRemoteAnimation) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java7560 void sendSetRunningRemoteAnimation(int pid, boolean runningRemoteAnimation) { argument
7561 mH.obtainMessage(H.SET_RUNNING_REMOTE_ANIMATION, pid, runningRemoteAnimation ? 1 : 0)

Completed in 2372 milliseconds