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

1 2

  /frameworks/base/core/java/android/hardware/display/
DisplayViewport.java 36 public int displayId;
57 displayId = viewport.displayId;
69 + ", displayId=" + displayId
DisplayManagerGlobal.java 104 * @param displayId The logical display id.
108 public DisplayInfo getDisplayInfo(int displayId) {
113 info = mDisplayInfoCache.get(displayId);
119 info = mDm.getDisplayInfo(displayId);
125 mDisplayInfoCache.put(displayId, info);
130 Log.d(TAG, "getDisplayInfo: displayId=" + displayId + ", info=" + info);
173 * @param displayId The logical display id.
177 public Display getCompatibleDisplay(int displayId, DisplayAdjustments daj) {
178 DisplayInfo displayInfo = getDisplayInfo(displayId);
    [all...]
  /external/robolectric/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;
  /frameworks/base/cmds/screencap/
screencap.cpp 95 int32_t displayId = DEFAULT_DISPLAY_ID;
103 displayId = atoi(optarg);
143 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay(displayId);
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 91 public final int displayId;
96 Object windowState, int displayId) {
99 this.displayId = displayId;
  /frameworks/base/core/java/android/app/
ResourcesManager.java 73 public DisplayMetrics getDisplayMetricsLocked(int displayId) {
74 return getDisplayMetricsLocked(displayId, DisplayAdjustments.DEFAULT_DISPLAY_ADJUSTMENTS);
77 public DisplayMetrics getDisplayMetricsLocked(int displayId, DisplayAdjustments daj) {
78 boolean isDefaultDisplay = (displayId == Display.DEFAULT_DISPLAY);
96 Display d = displayManager.getCompatibleDisplay(displayId, daj);
153 String[] overlayDirs, String[] libDirs, int displayId,
156 ResourcesKey key = new ResourcesKey(resDir, displayId, overrideConfiguration, scale, token);
214 DisplayMetrics dm = getDisplayMetricsLocked(displayId);
216 boolean isDefaultDisplay = (displayId == Display.DEFAULT_DISPLAY);
292 int displayId = key.mDisplayId
    [all...]
ActivityManager.java     [all...]
ContextImpl.java     [all...]
ActivityManagerNative.java     [all...]
  /frameworks/base/services/core/java/com/android/server/display/
LocalDisplayAdapter.java 230 final int displayId = mBuiltInDisplayId;
243 + Display.stateToString(state) + ", id=" + displayId + ")");
DisplayManagerService.java 298 int displayId, DisplayInfo info) {
300 LogicalDisplay display = mLogicalDisplays.get(displayId);
303 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_CHANGED);
351 private DisplayInfo getDisplayInfoInternal(int displayId, int callingUid) {
353 LogicalDisplay display = mLogicalDisplays.get(displayId);
734 final int displayId = assignDisplayIdLocked(isDefault);
735 final int layerStack = assignLayerStackLocked(displayId);
737 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device);
746 mLogicalDisplays.put(displayId, display);
753 sendDisplayEventLocked(displayId, DisplayManagerGlobal.EVENT_DISPLAY_ADDED)
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 56 jfieldID displayId;
159 mInfo->displayId = env->GetIntField(obj,
160 gInputWindowHandleClassInfo.displayId);
302 GET_FIELD_ID(gInputWindowHandleClassInfo.displayId, clazz,
303 "displayId", "I");
  /frameworks/native/services/inputflinger/
InputListener.h 91 int32_t displayId;
103 int32_t edgeFlags, int32_t displayId, uint32_t pointerCount,
InputWindow.h 134 int32_t displayId;
InputDispatcher.h 297 virtual int32_t injectInputEvent(const InputEvent* event, int32_t displayId,
381 virtual int32_t injectInputEvent(const InputEvent* event, int32_t displayId,
514 int32_t displayId;
524 nsecs_t downTime, int32_t displayId, uint32_t pointerCount,
703 bool isHovering(int32_t deviceId, uint32_t source, int32_t displayId) const;
759 int32_t displayId;
879 sp<InputWindowHandle> findTouchedWindowAtLocked(int32_t displayId, int32_t x, int32_t y);
    [all...]
InputDispatcher.cpp 172 static bool isMainDisplay(int32_t displayId) {
173 return displayId == ADISPLAY_ID_DEFAULT || displayId == ADISPLAY_ID_NONE;
441 int32_t displayId = motionEntry->displayId;
446 sp<InputWindowHandle> touchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y);
471 sp<InputWindowHandle> InputDispatcher::findTouchedWindowAtLocked(int32_t displayId,
478 if (windowInfo->displayId == displayId) {
859 if (isMainDisplay(entry->displayId)) {
    [all...]
InputReader.cpp 208 if (viewport.displayId >= 0) {
    [all...]
  /external/chromium_org/third_party/angle/src/libEGL/
libEGL.cpp 119 EGLNativeDisplayType displayId = static_cast<EGLNativeDisplayType>(native_display);
122 if (WindowFromDC(displayId) == NULL)
170 return egl::Display::getDisplay(displayId, requestedDisplayType);
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 71 final int displayId = mDisplayContent.getDisplayId();
72 if (DEBUG) Slog.v(TAG, "Ctor: displayId=" + displayId);
88 mDimSurface.setLayerStack(displayId);
WindowAnimator.java 132 void addDisplayLocked(final int displayId) {
134 getDisplayContentsAnimatorLocked(displayId);
135 if (displayId == Display.DEFAULT_DISPLAY) {
140 void removeDisplayLocked(final int displayId) {
141 final DisplayContentsAnimator displayAnimator = mDisplayContentsAnimators.get(displayId);
149 mDisplayContentsAnimators.delete(displayId);
181 private void updateAppWindowsLocked(int displayId) {
182 ArrayList<TaskStack> stacks = mService.getDisplayContentLocked(displayId).getStacks();
242 private void updateWindowsLocked(final int displayId) {
245 final WindowList windows = mService.getWindowListLocked(displayId);
    [all...]
WindowStateAnimator.java 426 final int displayId = mWin.getDisplayId();
427 mAnimator.setPendingLayoutChanges(displayId, WindowManagerPolicy.FINISH_LAYOUT_REDO_ANIM);
429 "WindowStateAnimator", mAnimator.getPendingLayoutChanges(displayId));
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PresentationActivity.java 97 // List of presentation contents indexed by displayId.
178 int displayId = mActivePresentations.keyAt(i);
179 mSavedPresentationContents.put(displayId, presentation.mContents);
196 final int displayId = display.getDisplayId();
197 if (mActivePresentations.get(displayId) != null) {
202 + " on display #" + displayId + ".");
207 mActivePresentations.put(displayId, presentation);
214 final int displayId = display.getDisplayId();
215 DemoPresentation presentation = mActivePresentations.get(displayId);
220 Log.d(TAG, "Dismissing presentation on display #" + displayId + ".")
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java     [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaRouterService.java     [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java 259 /** Mapping from displayId to display current state */
356 final int displayId = displays[displayNdx].getDisplayId();
357 ActivityDisplay activityDisplay = new ActivityDisplay(displayId);
361 mActivityDisplays.put(displayId, activityDisplay);
    [all...]

Completed in 1331 milliseconds

1 2