Home
last modified time | relevance | path

Searched refs:mRotationWatchers (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java564 ArrayList<RotationWatcher> mRotationWatchers = new ArrayList<>(); field in WindowManagerService
3948 for (int i=0; i<mRotationWatchers.size(); i++) { in watchRotation()
3949 if (watcherBinder == mRotationWatchers.get(i).mWatcher.asBinder()) { in watchRotation()
3950 RotationWatcher removed = mRotationWatchers.remove(i); in watchRotation()
3965 mRotationWatchers.add(new RotationWatcher(watcher, dr, displayId)); in watchRotation()
3978 for (int i=0; i<mRotationWatchers.size(); i++) { in removeRotationWatcher()
3979 RotationWatcher rotationWatcher = mRotationWatchers.get(i); in removeRotationWatcher()
3981 RotationWatcher removed = mRotationWatchers.remove(i); in removeRotationWatcher()
DDisplayContent.java1079 for (int i = mService.mRotationWatchers.size() - 1; i >= 0; i--) { in updateRotationUnchecked()
1081 = mService.mRotationWatchers.get(i); in updateRotationUnchecked()