HomeSort by relevance Sort by last modified time
    Searched refs:displayId (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/view/
IWallpaperVisibilityListener.aidl 27 * @param displayId The id of the display where wallpaper visibility changed.
29 void onWallpaperVisibilityChanged(boolean visible, int displayId);
IWindowManager.aidl 78 void getInitialDisplaySize(int displayId, out Point size);
79 void getBaseDisplaySize(int displayId, out Point size);
80 void setForcedDisplaySize(int displayId, int width, int height);
81 void clearForcedDisplaySize(int displayId);
82 int getInitialDisplayDensity(int displayId);
83 int getBaseDisplayDensity(int displayId);
84 void setForcedDisplayDensityForUser(int displayId, int density, int userId);
85 void clearForcedDisplayDensityForUser(int displayId, int userId);
86 void setForcedDisplayScalingMode(int displayId, int mode); // 0 = auto, 1 = disable
88 void setOverscan(int displayId, int left, int top, int right, int bottom)
    [all...]
WindowManagerPolicyConstants.java 88 default void onPointerEvent(MotionEvent motionEvent, int displayId) {
89 if (displayId == DEFAULT_DISPLAY) {
  /frameworks/base/core/java/android/hardware/display/
IDisplayManagerCallback.aidl 21 oneway void onDisplayEvent(int displayId, int event);
DisplayViewport.java 37 public int displayId;
61 displayId = viewport.displayId;
91 && displayId == other.displayId
105 result += prime * result + displayId;
119 + ", displayId=" + displayId
DisplayManagerGlobal.java 109 * @param displayId The logical display id.
113 public DisplayInfo getDisplayInfo(int displayId) {
118 info = mDisplayInfoCache.get(displayId);
124 info = mDm.getDisplayInfo(displayId);
130 mDisplayInfoCache.put(displayId, info);
135 Log.d(TAG, "getDisplayInfo: displayId=" + displayId + ", info=" + info);
176 * @param displayId The logical display id.
180 public Display getCompatibleDisplay(int displayId, DisplayAdjustments daj) {
181 DisplayInfo displayInfo = getDisplayInfo(displayId);
    [all...]
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWComposer.cpp 57 #define LOG_DISPLAY_ERROR(displayId, msg) \
58 ALOGE("%s failed for display %d: %s", __FUNCTION__, displayId, msg)
60 #define LOG_HWC_ERROR(what, error, displayId) \
61 ALOGE("%s: %s failed for display %d: %s (%d)", __FUNCTION__, what, displayId, \
64 #define RETURN_IF_INVALID_DISPLAY(displayId, ...) \
66 if (!isValidDisplay(displayId)) { \
67 LOG_DISPLAY_ERROR(displayId, "Invalid display"); \
72 #define RETURN_IF_HWC_ERROR_FOR(what, error, displayId, ...) \
75 LOG_HWC_ERROR(what, error, displayId); \
80 #define RETURN_IF_HWC_ERROR(error, displayId, ...)
    [all...]
HWComposer.h 85 HWC2::Layer* createLayer(int32_t displayId);
87 void destroyLayer(int32_t displayId, HWC2::Layer* layer);
92 status_t setClientTarget(int32_t displayId, uint32_t slot,
97 status_t presentAndGetReleaseFences(int32_t displayId);
100 status_t setPowerMode(int32_t displayId, int mode);
103 status_t setActiveConfig(int32_t displayId, size_t configId);
106 status_t setColorTransform(int32_t displayId, const mat4& transform);
109 void disconnectDisplay(int32_t displayId);
112 bool hasDeviceComposition(int32_t displayId) const;
115 bool hasFlipClientTargetRequest(int32_t displayId) const
    [all...]
  /packages/services/Car/tests/DirectRenderingClusterSample/src/android/car/cluster/sample/
ClusterDisplayProvider.java 74 public void onDisplayAdded(int displayId) {
78 mClusterDisplayId = displayId;
81 Display display = mDisplayManager.getDisplay(displayId);
83 mClusterDisplayId = displayId;
89 mListener.onDisplayAdded(displayId);
94 public void onDisplayRemoved(int displayId) {
95 if (displayId == mClusterDisplayId) {
97 mListener.onDisplayRemoved(displayId);
102 public void onDisplayChanged(int displayId) {
103 if (displayId == mClusterDisplayId)
    [all...]
NavigationFragment.java 59 public void onDisplayAdded(int displayId) {
61 Log.i(TAG, "onDisplayAdded, displayId: " + displayId
64 if (navDisplayId == displayId) {
69 .setLaunchDisplayId(displayId));
70 mRegisteredNavDisplayId = displayId;
83 public void onDisplayRemoved(int displayId) {
84 if (mRegisteredNavDisplayId == displayId) {
96 public void onDisplayChanged(int displayId) {}
  /frameworks/base/services/core/java/com/android/server/wm/
WallpaperVisibilityListeners.java 36 int displayId) {
38 mDisplayListeners.get(displayId);
41 mDisplayListeners.append(displayId, listeners);
47 int displayId) {
49 mDisplayListeners.get(displayId);
57 final int displayId = displayContent.getDisplayId();
60 mDisplayListeners.get(displayId);
72 listener.onWallpaperVisibilityChanged(visible, displayId);
WindowAnimator.java 115 void addDisplayLocked(final int displayId) {
118 getDisplayContentsAnimatorLocked(displayId);
119 if (displayId == DEFAULT_DISPLAY) {
124 void removeDisplayLocked(final int displayId) {
125 final DisplayContentsAnimator displayAnimator = mDisplayContentsAnimators.get(displayId);
133 mDisplayContentsAnimators.delete(displayId);
167 final int displayId = mDisplayContentsAnimators.keyAt(i);
168 final DisplayContent dc = mService.mRoot.getDisplayContent(displayId);
201 final int displayId = mDisplayContentsAnimators.keyAt(i);
202 final DisplayContent dc = mService.mRoot.getDisplayContent(displayId);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowDisplayManagerTest.java 76 int displayId = ShadowDisplayManager.addDisplay("w100dp-h200dp");
77 assertThat(displayId).isGreaterThan(0);
79 DisplayInfo di = getGlobal().getDisplayInfo(displayId);
83 Display display = instance.getDisplay(displayId);
84 assertThat(display.getDisplayId()).isEqualTo(displayId);
91 int displayId = ShadowDisplayManager.addDisplay("w100dp-h200dp");
92 assertThat(events).containsExactly("Added " + displayId);
135 int displayId = ShadowDisplayManager.addDisplay("w100dp-h200dp");
137 ShadowDisplayManager.changeDisplay(displayId, "w300dp-h400dp");
139 Display display = getGlobal().getRealDisplay(displayId);
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowDisplayManagerGlobal.java 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)
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Display.cpp 34 Display *Display::getDisplay(NativeDisplayType displayId)
36 if(displays.find(displayId) != displays.end())
38 return displays[displayId];
41 // FIXME: Check if displayId is a valid display device context
42 Display *display = new Display(displayId);
44 displays[displayId] = display;
48 Display::Display(NativeDisplayType displayId) : displayId(displayId)
58 displays.erase(displayId);
    [all...]
Display.h 41 static Display *getDisplay(NativeDisplayType displayId);
64 Display(NativeDisplayType displayId);
68 const NativeDisplayType displayId;
  /frameworks/native/include/input/
DisplayViewport.h 30 int32_t displayId; // -1 if invalid
45 displayId(ADISPLAY_ID_NONE), orientation(DISPLAY_ORIENTATION_0),
52 return displayId == other.displayId
72 return displayId >= 0;
76 displayId = ADISPLAY_ID_NONE;
  /frameworks/base/services/core/java/com/android/server/input/
InputForwarder.java 36 InputForwarder(int displayId) {
37 mDisplayId = displayId;
InputWindowHandle.java 95 public int displayId;
100 Object windowState, IWindow clientWindow, int displayId) {
104 this.displayId = displayId;
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
ViewMediatorCallback.java 101 void onSecondaryDisplayShowingChanged(int displayId);
  /packages/apps/Dialer/java/com/android/incallui/answerproximitysensor/
SystemProximityWakeLock.java 68 public void onDisplayAdded(int displayId) {}
71 public void onDisplayRemoved(int displayId) {}
74 public void onDisplayChanged(int displayId) {
75 if (displayId == Display.DEFAULT_DISPLAY) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDisplay.java 16 private int displayId;
51 return displayId;
109 public void setDisplayId(int displayId) {
110 this.displayId = displayId;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DisplayFacade.java 70 @RpcParameter(name = "displayId")
72 Integer displayId) {
74 Display d = mDisplays.get(displayId);
81 @RpcParameter(name = "displayId")
83 Integer displayId) {
84 Display d = mDisplays.get(displayId);
90 @RpcParameter(name = "displayId")
92 Integer displayId) {
93 Display d = mDisplays.get(displayId);
  /frameworks/base/core/java/android/hardware/input/
InputManagerInternal.java 30 public abstract boolean injectInputEvent(InputEvent event, int displayId, int mode);
  /frameworks/layoutlib/bridge/src/android/view/
IWindowManagerImpl.java 91 public void clearForcedDisplaySize(int displayId) throws RemoteException {
96 public void clearForcedDisplayDensityForUser(int displayId, int userId) throws RemoteException {
101 public void setOverscan(int displayId, int left, int top, int right, int bottom)
302 public void getInitialDisplaySize(int displayId, Point size) {
307 public void getBaseDisplaySize(int displayId, Point size) {
312 public void setForcedDisplaySize(int displayId, int arg0, int arg1) throws RemoteException {
317 public int getInitialDisplayDensity(int displayId) {
322 public int getBaseDisplayDensity(int displayId) {
327 public void setForcedDisplayDensityForUser(int displayId, int density, int userId)
333 public void setForcedDisplayScalingMode(int displayId, int mode)
    [all...]

Completed in 505 milliseconds

1 2 3 4 5 6 7 8 910