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.java693 ArrayList<RotationWatcher> mRotationWatchers = new ArrayList<>(); field in WindowManagerService
3984 for (int i=0; i<mRotationWatchers.size(); i++) { in watchRotation()
3985 if (watcherBinder == mRotationWatchers.get(i).mWatcher.asBinder()) { in watchRotation()
3986 RotationWatcher removed = mRotationWatchers.remove(i); in watchRotation()
4001 mRotationWatchers.add(new RotationWatcher(watcher, dr, displayId)); in watchRotation()
4014 for (int i=0; i<mRotationWatchers.size(); i++) { in removeRotationWatcher()
4015 RotationWatcher rotationWatcher = mRotationWatchers.get(i); in removeRotationWatcher()
4017 RotationWatcher removed = mRotationWatchers.remove(i); in removeRotationWatcher()
DDisplayContent.java1712 for (int i = mWmService.mRotationWatchers.size() - 1; i >= 0; i--) { in applyRotation()
1714 = mWmService.mRotationWatchers.get(i); in applyRotation()