/hardware/intel/common/libmix/mix_video/src/ |
mixvideorenderparams.c | 43 self->display = NULL; 101 if (self->display) { 102 mix_display_unref(self->display); 103 self->display = NULL; 165 this_src->display); 220 if (mix_display_equal(MIX_DISPLAY(this_first->display), MIX_DISPLAY( 221 this_second->display)) && mix_rect_equal(this_first->src_rect, 252 MixDisplay * display) { 256 if (obj->display) { 257 mix_display_unref(obj->display); [all...] |
/frameworks/native/services/surfaceflinger/RenderEngine/ |
RenderEngine.cpp | 49 RenderEngine* RenderEngine::create(EGLDisplay display, int hwcFormat) { 53 // both a 16-bit primary display framebuffer and a 32-bit virtual display 60 eglQueryStringImplementationANDROID(display, EGL_EXTENSIONS), 62 config = chooseEglConfig(display, hwcFormat); 68 } else if (!eglGetConfigAttrib(display, config, 92 EGLContext ctxt = eglCreateContext(display, config, NULL, contextAttributes); 103 dummyConfig = chooseEglConfig(display, hwcFormat); 106 EGLSurface dummy = eglCreatePbufferSurface(display, dummyConfig, attribs); 108 EGLBoolean success = eglMakeCurrent(display, dummy, dummy, ctxt) [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
PresentationActivity.java | 31 import android.hardware.display.DisplayManager; 38 import android.view.Display; 61 * on a secondary display using a {@link Presentation}. 64 * When the user selects a display, the activity opens a {@link Presentation} 65 * on that display. We show a different photograph in each presentation 66 * on a unique background along with a label describing the display. 67 * We also write information about displays and display-related events to 70 * You can try this out using an HDMI or Wifi display or by using the 72 * simulated secondary displays. Each display will appear in the list along with a 73 * checkbox to show a presentation on that display 157 final Display display = mDisplayListAdapter.getItem(i); local 261 final Display display = (Display)buttonView.getTag(); local 280 final Display display = (Display)v.getTag(); local 302 final Display display = (Display)parent.getTag(); local 313 final Display display = (Display)parent.getTag(); local 384 final Display display = getItem(position); local 499 final Display display = getDisplay(); local [all...] |
/external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/ |
EmbeddedSpreadsheetPresenter.java | 26 public interface Display { 57 private Display display; field in class:EmbeddedSpreadsheetPresenter 59 public void bindDisplay(Display display) { 60 this.display = display; 102 display.showNoResults(); 106 display.showSpreadsheet(); 108 new SpreadsheetDataProcessor(display.getSpreadsheet()) [all...] |
/external/deqp/modules/egl/ |
teglSurfacelessContextTests.cpp | 61 void executeForConfig (EGLDisplay display, EGLConfig config); 73 void SurfacelessContextCase::executeForConfig (EGLDisplay display, EGLConfig config) 77 const EGLint id = eglu::getConfigAttribInt(egl, display, config, EGL_CONFIG_ID); 78 const EGLint apiBits = eglu::getConfigAttribInt(egl, display, config, EGL_RENDERABLE_TYPE); 99 if (!eglu::hasExtension(egl, display, "EGL_KHR_surfaceless_context")) 111 eglu::UniqueContext context(egl, display, egl.createContext(display, config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs)); 114 if (!egl.makeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, *context)) 131 EGLU_CHECK_CALL(egl, makeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT));
|
teglCreateContextTests.cpp | 47 void executeForConfig (EGLDisplay display, EGLConfig config); 59 void CreateContextCase::executeForConfig (EGLDisplay display, EGLConfig config) 63 EGLint id = eglu::getConfigAttribInt(egl, display, config, EGL_CONFIG_ID); 64 EGLint apiBits = eglu::getConfigAttribInt(egl, display, config, EGL_RENDERABLE_TYPE); 95 EGLContext context = egl.createContext(display, config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs); 106 EGLU_CHECK_CALL(egl, destroyContext(display, context));
|
teglRenderCase.hpp | 58 virtual void executeForConfig (eglw::EGLDisplay display, eglw::EGLConfig config); 59 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config) = DE_NULL; 71 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config); 72 virtual void executeForContext (eglw::EGLDisplay display, eglw::EGLContext context, eglw::EGLSurface surface, const Config& config) = DE_NULL; 84 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config); 85 virtual void executeForContexts (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config, const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts) = DE_NULL;
|
/frameworks/base/services/core/java/com/android/server/display/ |
WifiDisplayAdapter.java | 17 package com.android.server.display; 26 import android.hardware.display.DisplayManager; 27 import android.hardware.display.WifiDisplay; 28 import android.hardware.display.WifiDisplaySessionInfo; 29 import android.hardware.display.WifiDisplayStatus; 37 import android.view.Display; 51 * The Wifi display protocol relies on Wifi direct for discovering and pairing 52 * with the display. Once connected, the Media Server opens an RTSP socket and accepts 53 * a connection from the display. After session negotiation, the Media Server 54 * streams encoded buffers to the display 250 WifiDisplay display = mPersistentDataStore.getRememberedWifiDisplay(address); local [all...] |
PersistentDataStore.java | 17 package com.android.server.display; 26 import android.hardware.display.WifiDisplay; 30 import android.view.Display; 49 * Manages persistent state recorded by the display manager service as an XML file. 54 * <display-manager-state> 56 * <wifi-display deviceAddress="00:00:00:00:00:00" deviceName="XXXX" deviceAlias="YYYY" /> 58 * <display-states> 59 * <display> 61 * </display> 62 * </display-states [all...] |
DisplayManagerService.java | 17 package com.android.server.display; 25 import android.hardware.display.DisplayManager; 26 import android.hardware.display.DisplayManagerGlobal; 27 import android.hardware.display.DisplayManagerInternal; 28 import android.hardware.display.DisplayViewport; 29 import android.hardware.display.DisplayManagerInternal.DisplayTransactionListener; 30 import android.hardware.display.IDisplayManager; 31 import android.hardware.display.IDisplayManagerCallback; 32 import android.hardware.display.IVirtualDisplayCallback; 33 import android.hardware.display.WifiDisplayStatus 314 LogicalDisplay display = mLogicalDisplays.get(displayId); local 387 LogicalDisplay display = mLogicalDisplays.get(displayId); local 404 LogicalDisplay display = mLogicalDisplays.valueAt(i); local 551 LogicalDisplay display = mLogicalDisplays.get(displayId); local 578 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device); local 699 LogicalDisplay display = addLogicalDisplayLocked(device); local 803 LogicalDisplay display = new LogicalDisplay(displayId, layerStack, device); local 840 LogicalDisplay display = mLogicalDisplays.valueAt(i); local 878 LogicalDisplay display = mLogicalDisplays.get(displayId); local 909 LogicalDisplay display = mLogicalDisplays.get(displayId); local 936 LogicalDisplay display = findLogicalDisplayForDeviceLocked(device); local 978 LogicalDisplay display = mLogicalDisplays.valueAt(i); local 1071 LogicalDisplay display = mLogicalDisplays.valueAt(i); local [all...] |
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/ |
scan.js | 19 waitAnimation.style.display = 'block'; 20 requestButton.style.display = 'none'; 21 scanButton.style.display = 'block'; 23 waitAnimation.style.display = 'none'; 29 waitAnimation.style.display = 'block'; 41 waitAnimation.style.display = 'none'; 61 waitAnimation.style.display = 'block';
|
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/ |
TngDisplayContext.cpp | 53 // init IMG display device 56 ETRACE("failed to get display device, error = %d", err); 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, error = %d", err); 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/ |
util.c | 177 EGLDisplay display; local 182 display = eglGetDisplay(EGL_DEFAULT_DISPLAY); 183 if (display == EGL_NO_DISPLAY) 186 if (!(res = eglInitialize(display, &major, &minor))) 197 if ((res = select_config_for_window(display, config_attrs, format, &config))) 200 surface = eglCreateWindowSurface(display, config, window, NULL); 204 context = eglCreateContext(display, config, EGL_NO_CONTEXT, context_attrs); 208 if (!(res = eglMakeCurrent(display, surface, surface, context))) 211 eglQuerySurface(display, surface, EGL_WIDTH, &w); 212 eglQuerySurface(display, surface, EGL_HEIGHT, &h) [all...] |
/external/libpng/ |
pngread.c | 457 png_combine_row(png_ptr, dsp_row, 1/*display*/); 467 png_combine_row(png_ptr, dsp_row, 1/*display*/); 478 png_combine_row(png_ptr, dsp_row, 1/*display*/); 489 png_combine_row(png_ptr, dsp_row, 1/*display*/); 500 png_combine_row(png_ptr, dsp_row, 1/*display*/); 511 png_combine_row(png_ptr, dsp_row, 1/*display*/); 587 png_combine_row(png_ptr, dsp_row, 1/*display*/); 620 * appear to "sparkle" in. "display_row" can be used to display a 622 * available. If you do not want this "chunky" display, you may pass 623 * NULL for display_row. If you do not want the sparkle display, an 2062 png_image_read_control *display = local 2916 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3105 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3238 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3365 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3645 png_image_read_control *display = png_voidcast(png_image_read_control*, local 4106 png_image_read_control display; local [all...] |
/external/pdfium/third_party/lpng_v163/ |
pngread.c | 387 png_combine_row(png_ptr, dsp_row, 1/*display*/);
397 png_combine_row(png_ptr, dsp_row, 1/*display*/);
408 png_combine_row(png_ptr, dsp_row, 1/*display*/);
419 png_combine_row(png_ptr, dsp_row, 1/*display*/);
430 png_combine_row(png_ptr, dsp_row, 1/*display*/);
441 png_combine_row(png_ptr, dsp_row, 1/*display*/);
518 png_combine_row(png_ptr, dsp_row, 1/*display*/);
551 * appear to "sparkle" in. "display_row" can be used to display a
553 * available. If you do not want this "chunky" display, you may pass
554 * NULL for display_row. If you do not want the sparkle display, and 1945 png_image_read_control *display = local 2786 png_image_read_control *display = png_voidcast(png_image_read_control*, local 2976 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3109 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3236 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3508 png_image_read_control *display = png_voidcast(png_image_read_control*, local 3955 png_image_read_control display; local [all...] |
/frameworks/base/core/jni/ |
com_google_android_gles_jni_EGLImpl.cpp | 119 static jboolean jni_eglInitialize(JNIEnv *_env, jobject _this, jobject display, 121 if (display == NULL || (major_minor != NULL && 127 EGLDisplay dpy = getDisplay(_env, display); 142 static jboolean jni_eglQueryContext(JNIEnv *_env, jobject _this, jobject display, 144 if (display == NULL || context == NULL || value == NULL 149 EGLDisplay dpy = getDisplay(_env, display); 161 static jboolean jni_eglQuerySurface(JNIEnv *_env, jobject _this, jobject display, 163 if (display == NULL || surface == NULL || value == NULL 168 EGLDisplay dpy = getDisplay(_env, display); 181 static jint jni_getInitCount(JNIEnv *_env, jobject _clazz, jobject display) { [all...] |
/cts/tests/tests/graphics/src/android/opengl/cts/ |
EglConfigTest.java | 73 EGLDisplay display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); local 88 if (egl.eglInitialize(display, null)) { 90 if (egl.eglChooseConfig(display, attributeList, null, 0, numConfigs)) { 92 if (egl.eglChooseConfig(display, attributeList, configs, configs.length, 97 if (egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_CONFIG_ID, 112 egl.eglTerminate(display);
|
/external/dbus/dbus/ |
dbus-server-launchd.c | 74 const char *launchd_socket_path, *display; local 77 display = _dbus_getenv ("DISPLAY"); 162 if (display == NULL || *display == '\0') 171 environment_param = launch_data_dict_lookup (environment_dict, "DISPLAY"); 174 _dbus_warn ("Unable to retrieve DISPLAY from launchd."); 178 display = launch_data_get_string(environment_param); 179 _dbus_setenv ("DISPLAY", display); [all...] |
/external/deqp/framework/egl/ |
egluConfigFilter.cpp | 39 CandidateConfig::CandidateConfig (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config) 43 m_cfg.object.display = display; 58 return getConfigAttribInt(*m_cfg.object.egl, m_cfg.object.display, m_cfg.object.config, attrib); 86 bool FilterList::match (const Library& egl, EGLDisplay display, EGLConfig config) const 88 return match(CandidateConfig(egl, display, config));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
TimeLineGraphItem.java | 33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) { 34 this(title, description, value, color,display, timestamp,isSpecial); 38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) { 39 this(title, description, value, color,display, timestamp); 43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) { 45 this.displayDescription=display;
|
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/ |
testlib.c | 44 Display *display, 63 if (!XvMCQueryExtension(display, &ev_base, &err_base)) 65 if (XvQueryAdaptors(display, XDefaultRootWindow(display), &num_adaptors, &adaptor_info) != Success) 72 XvMCSurfaceInfo *surface_info = XvMCListSurfaceTypes(display, adaptor_info[i].base_id, &num_types); 91 if (XvGrabPort(display, adaptor_info[i].base_id + l, CurrentTime) == Success)
|
/external/rmi4utils/f54test/ |
main.cpp | 35 #include "display.h" 55 Display * display; local 59 display = new AnsiConsole(); 63 display = new Display(); 66 display->Clear(); 72 F54Test f54Test(rmidevice, *display); 90 delete display;
|
/external/ImageMagick/MagickCore/ |
animate.c | 141 " space Press to display the next image in the sequence.", 143 " < Press to speed-up the display of the images. Refer to", 146 " > Press to slow the display of the images. Refer to", 149 " F1 Press to display helpful information about animate(1).", 153 " ? Press to display information about the image. Press", 251 *XMagickCommand(Display *,XResourceInfo *,XWindows *,const CommandType, 255 XSaveImage(Display *,XResourceInfo *,XWindows *,Image *,ExceptionInfo *); 293 Display 294 *display; 311 display=XOpenDisplay(image_info->server_name) 287 *display; local [all...] |
/external/libvncserver/webclients/novnc/include/ |
ui.js | 11 /* global window, $D, Util, WebUtil, RFB, Display */ 22 "keysymdef.js", "keyboard.js", "input.js", "display.js", 117 $D('noVNC_mobile_buttons').style.display = "inline"; 151 $D('noVNC_description').style.display = "block"; 294 psp.style.display = "none"; 298 psp.style.display = "block"; 308 $D('noVNC_description').style.display = "none"; 328 $D('noVNC_xvp').style.display = "none"; 332 $D('noVNC_xvp').style.display = "block"; 341 $D('noVNC_description').style.display = "none" [all...] |