Searched defs:mRotationWatchers (Results 1 - 1 of 1) sorted by path

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

Completed in 81 milliseconds