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

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java572 ArrayList<RotationWatcher> mRotationWatchers = new ArrayList<>(); field in class:WindowManagerService
4008 for (int i=0; i<mRotationWatchers.size(); i++) {
4009 if (watcherBinder == mRotationWatchers.get(i).mWatcher.asBinder()) {
4010 RotationWatcher removed = mRotationWatchers.remove(i);
4025 mRotationWatchers.add(new RotationWatcher(watcher, dr, displayId));
4038 for (int i=0; i<mRotationWatchers.size(); i++) {
4039 RotationWatcher rotationWatcher = mRotationWatchers.get(i);
4041 RotationWatcher removed = mRotationWatchers.remove(i);

Completed in 68 milliseconds