Home | History | Annotate | Download | only in shadows

Lines Matching refs:displayId

57   void changeDisplay(int displayId, DisplayInfo displayInfo) {
58 mDm.changeDisplay(displayId, displayInfo);
61 void removeDisplay(int displayId) {
62 mDm.removeDisplay(displayId);
80 for (Integer displayId : displayInfos.keySet()) {
81 ids[i++] = displayId;
98 synchronized private void changeDisplay(int displayId, DisplayInfo displayInfo) {
99 if (!displayInfos.containsKey(displayId)) {
100 throw new IllegalStateException("no display " + displayId);
103 displayInfos.put(displayId, displayInfo);
104 notifyListeners(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
107 synchronized private void removeDisplay(int displayId) {
108 if (!displayInfos.containsKey(displayId)) {
109 throw new IllegalStateException("no display " + displayId);
112 displayInfos.remove(displayId);
113 notifyListeners(displayId, DisplayManagerGlobal.EVENT_DISPLAY_REMOVED);