HomeSort by relevance Sort by last modified time
    Searched defs:display (Results 76 - 100 of 602) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/drm_hwcomposer/
vsyncworker.cpp 45 int VSyncWorker::Init(DrmResources *drm, int display) {
47 display_ = display;
153 int display = display_; local
164 DrmCrtc *crtc = drm_->GetCrtcForDisplay(display);
166 ALOGE("Failed to get crtc for display");
200 procs->vsync(procs, display, timestamp);
  /external/expat/tests/
minicheck.c 152 int display = (int) (percentage * 100); local
154 display, runner->nchecks, runner->nfailures);
  /external/libpng/contrib/libtests/
timepng.c 42 png_bytep row = NULL, display = NULL; local
51 if (display != NULL) free(display);
67 display = malloc(rowbytes);
69 if (row == NULL || display == NULL)
87 png_read_row(png_ptr, row, display);
96 free(display);
  /external/mesa3d/src/egl/wayland/wayland-drm/
wayland-drm.c 40 struct wl_display *display; member in struct:wl_drm
210 wayland_drm_init(struct wl_display *display, char *device_name,
217 drm->display = display;
222 wl_display_add_global(display, &wl_drm_interface, drm, bind_drm);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_xsp.c 47 Display *display; member in struct:vl_xsp_screen
69 if (XGetGeometry(xsp_screen->display, drawable, &root, &x, &y, &width, &height, &border_width, &depth) == BadDrawable)
129 vl_screen_create(Display *display, int screen)
134 assert(display);
140 winsys = xlib_create_sw_winsys(display);
153 xsp_screen->display = display;
155 xsp_screen->xdraw.visual = XDefaultVisual(display, screen)
    [all...]
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 17 Display *display; member in struct:__anon16807
31 winsys = xlib_create_sw_winsys( graw.display );
61 graw.display = XOpenDisplay(NULL);
62 if (graw.display == NULL)
65 scrnum = DefaultScreen( graw.display );
66 root = RootWindow( graw.display, scrnum );
69 if (graw.display == NULL)
78 templat.screen = DefaultScreen(graw.display);
82 visinfo = XGetVisualInfo(graw.display, mask, &templat, &n)
    [all...]
  /external/skia/src/gpu/gl/angle/
SkANGLEGLContext.cpp 45 EGLDisplay display = EGL_NO_DISPLAY; local
46 for (int i = 0; i < 2 && display == EGL_NO_DISPLAY; ++i) {
47 display = eglGetPlatformDisplayEXT(EGL_PLATFORM_ANGLE_ANGLE,
50 return display;
71 SkDebugf("Could not create EGL display!");
131 //TODO should we close the display?
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
DumpCommand.java 21 import android.hardware.display.DisplayManagerGlobal;
23 import android.view.Display;
94 Display display = local
95 DisplayManagerGlobal.getInstance().getRealDisplay(Display.DEFAULT_DISPLAY);
96 int rotation = display.getRotation();
98 display.getSize(size);
  /frameworks/base/core/java/android/hardware/display/
VirtualDisplay.java 16 package android.hardware.display;
18 import android.view.Display;
22 * Represents a virtual display. The content of a virtual display is rendered to a
26 * Because a virtual display renders to a surface provided by the application, it will be
36 private final Display mDisplay;
40 VirtualDisplay(DisplayManagerGlobal global, Display display,
43 mDisplay = display;
49 * Gets the virtual display
    [all...]
WifiDisplay.java 17 package android.hardware.display;
25 * Describes the properties of a Wifi display.
77 * Gets the MAC address of the Wifi display device.
84 * Gets the name of the Wifi display device.
91 * Gets the user-specified alias of the Wifi display device, or null if none.
147 * Returns true if the other display is not null and has the same address as this one.
  /frameworks/base/core/tests/coretests/src/android/view/
BigCache.java 27 import android.view.Display;
45 final Display display = getWindowManager().getDefaultDisplay(); local
46 final int screenWidth = display.getWidth();
47 final int screenHeight = display.getHeight();
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 59 // includes the display, context, and surface. It is possible to either create
62 // necessarily through this class), and have an active display, context, and
79 // there is already a display, surface and context available (possibly
157 // Working with the Display ////////////////////////////////////////////////
159 // Obtain the environment's EGL display.
160 const EGLDisplay& display() const { function in class:android::filterfw::GLEnv
209 // Get the currently active display.
230 // The EGL display, contexts, and surfaces.
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeBackgroundService.java 29 import android.view.Display;
72 final Display display = wm.getDefaultDisplay(); local
92 int maxSize = display.getMaximumSizeDimension();
  /frameworks/base/services/core/java/com/android/server/display/
DisplayAdapter.java 17 package com.android.server.display;
21 import android.view.Display;
27 * A display adapter makes zero or more display devices available to the system
30 * For now, all display adapters are registered in the system server but
33 * Display adapters are guarded by the {@link DisplayManagerService.SyncRoot} lock.
48 * Used to generate globally unique display mode ids.
63 * Gets the object that the display adapter should synchronize on when handling
64 * calls that come in from outside of the display manager service.
71 * Gets the display adapter's context
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_AssetAtlasService.cpp 54 if (fence != EGL_NO_SYNC_KHR) eglDestroySyncKHR(display, fence); \
55 if (image) eglDestroyImageKHR(display, image); \
57 if (surface != EGL_NO_SURFACE) eglDestroySurface(display, surface); \
58 if (context != EGL_NO_CONTEXT) eglDestroyContext(display, context); \
59 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); \
61 eglTerminate(display); \
76 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
77 if (display == EGL_NO_DISPLAY) return JNI_FALSE;
81 if (!eglInitialize(display, &major, &minor)) {
100 if (!eglChooseConfig(display, configAttrs, configs, 1, &configCount))
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixvideorenderparams.h 73 MixDisplay *display; member in struct:_MixVideoRenderParams
137 MixDisplay * display);
139 MixDisplay ** display);
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngDisplayContext.cpp 53 // init IMG display device
56 ETRACE("failed to get display device");
72 bool TngDisplayContext::commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList)
78 if (!display || !layerList) {
85 for (size_t i = 0; i < display->numHwLayers; i++) {
92 if (!display->hwLayers[i].handle) {
109 imgLayer->psLayer = &display->hwLayers[i];
164 hwc_display_contents_1_t* display = displays[i]; local
165 if (!display) {
169 for (size_t j = 0; j < display->numHwLayers-1; j++)
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
TngDisplayContext.cpp 52 // init IMG display device
55 ELOGTRACE("failed to get display device");
72 bool TngDisplayContext::commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList)
78 if (!display || !layerList) {
85 for (size_t i = 0; i < display->numHwLayers; i++) {
92 if (!display->hwLayers[i].handle) {
109 imgLayer->psLayer = &display->hwLayers[i];
164 hwc_display_contents_1_t* display = displays[i]; local
165 if (!display) {
169 for (size_t j = 0; j < display->numHwLayers-1; j++)
    [all...]
  /hardware/libhardware/tests/hwc/
test-arrows.c 141 EGLDisplay display; local
148 if (egl_create(&display, &surface, &w, &h))
156 eglSwapBuffers(display, surface);
162 egl_destroy(display, surface);
  /packages/apps/ExactCalculator/tests/src/com/android/calculator2/
CalculatorHitSomeButtons.java 159 Log.v(TAG, "Display:" + displayVal());
170 CalculatorResult display = (CalculatorResult) mActivity.findViewById(R.id.result); local
171 assertNotNull(display);
173 TextView box = (TextView) display;
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetConfigure.java 55 DisplayMetrics display = getResources().getDisplayMetrics(); local
56 int maxDimension = Math.max(display.heightPixels, display.widthPixels);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/
DisplayBrowseInfo.java 17 package com.android.tv.settings.device.display;
55 SettingsConstant.PACKAGE + ".device.display.daydream.DaydreamActivity"))
63 SettingsConstant.PACKAGE + ".device.display.widi.WifiDisplayActivity"))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
Xdbe.h 77 Display *display; /* display the event was read from */ member in struct:__anon30265
92 Display* /* dpy */,
98 Display* /* dpy */,
104 Display* /* dpy */,
109 Display* /* dpy */,
115 Display* /* dpy */
119 Display* /* dpy */
123 Display* /* dpy */
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
Xdbe.h 75 Display *display; /* display the event was read from */ member in struct:__anon32123
90 Display* /* dpy */,
96 Display* /* dpy */,
102 Display* /* dpy */,
107 Display* /* dpy */,
113 Display* /* dpy */
117 Display* /* dpy */
121 Display* /* dpy */
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 45 import org.eclipse.swt.widgets.Display;
84 // add display hook
114 Display display = getDisplay(); local
115 display.addFilter(SWT.FocusIn, displayFocusInHook);
116 display.addFilter(SWT.FocusOut, displayFocusOutHook);
129 // remove Display hooks
130 Display display = getDisplay();
131 display.removeFilter(SWT.FocusIn, displayFocusInHook)
    [all...]

Completed in 235 milliseconds

1 2 34 5 6 7 8 91011>>