Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java567 ArrayList<RotationWatcher> mRotationWatchers = new ArrayList<>(); field in WindowManagerService
6702 for (int i=mRotationWatchers.size()-1; i>=0; i--) { in updateRotationUncheckedLocked()
6704 mRotationWatchers.get(i).watcher.onRotationChanged(rotation); in updateRotationUncheckedLocked()
6738 for (int i=0; i<mRotationWatchers.size(); i++) { in watchRotation()
6739 if (watcherBinder == mRotationWatchers.get(i).watcher.asBinder()) { in watchRotation()
6740 RotationWatcher removed = mRotationWatchers.remove(i); in watchRotation()
6755 mRotationWatchers.add(new RotationWatcher(watcher, dr)); in watchRotation()
6768 for (int i=0; i<mRotationWatchers.size(); i++) { in removeRotationWatcher()
6769 RotationWatcher rotationWatcher = mRotationWatchers.get(i); in removeRotationWatcher()
6771 RotationWatcher removed = mRotationWatchers.remove(i); in removeRotationWatcher()