Searched defs:display (Results 1 - 25 of 74) sorted by last modified time

123

/frameworks/rs/driver/
H A DrsdGL.h41 EGLDisplay display; member in struct:RsdGLRec::__anon1536
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEntry.java35 /** Used when {@link #mDestinationType} is invalid and thus shouldn't be used for display. */
45 * True when this entry is the first entry in a group, which should have a photo and display
124 * @return the display name for the entry. If the display name source is larger than
125 * {@link DisplayNameSources#PHONE} we use the contact's display name, but if not,
126 * i.e. the display name came from an email address or a phone number, we don't use it
136 * with both an associated display name. This address has not been resolved
139 public static RecipientEntry constructGeneratedEntry(String display, String address) { argument
140 return new RecipientEntry(ENTRY_TYPE_PERSON, display,
/frameworks/native/libs/gui/
H A DBufferQueue.cpp861 status_t BufferQueue::releaseBuffer(int buf, EGLDisplay display, argument
872 mSlots[buf].mEglDisplay = display;
H A DConsumerBase.cpp222 status_t ConsumerBase::releaseBufferLocked(int slot, EGLDisplay display, argument
225 status_t err = mBufferQueue->releaseBuffer(slot, display, eglFence,
H A DISurfaceComposer.cpp106 const sp<IBinder>& display, sp<IMemoryHeap>* heap,
113 data.writeStrongBinder(display);
201 virtual void blank(const sp<IBinder>& display) argument
205 data.writeStrongBinder(display);
209 virtual void unblank(const sp<IBinder>& display) argument
213 data.writeStrongBinder(display);
217 virtual status_t getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info) argument
221 data.writeStrongBinder(display);
273 sp<IBinder> display = data.readStrongBinder(); local
281 status_t res = captureScreen(display,
105 captureScreen( const sp<IBinder>& display, sp<IMemoryHeap>* heap, uint32_t* width, uint32_t* height, PixelFormat* format, uint32_t reqWidth, uint32_t reqHeight, uint32_t minLayerZ, uint32_t maxLayerZ) argument
319 sp<IBinder> display = data.readStrongBinder(); local
324 sp<IBinder> display = data.readStrongBinder(); local
330 sp<IBinder> display = data.readStrongBinder(); local
[all...]
H A DSurface.cpp308 // TODO: the display metrics should come from the display manager
310 sp<IBinder> display = SurfaceComposerClient::getBuiltInDisplay( local
312 SurfaceComposerClient::getDisplayInfo(display, &dinfo);
H A DSurfaceComposerClient.cpp573 const sp<IBinder>& display, DisplayInfo* info)
575 return ComposerService::getComposerService()->getDisplayInfo(display, info);
592 status_t ScreenshotClient::update(const sp<IBinder>& display) { argument
596 return s->captureScreen(display, &mHeap,
601 status_t ScreenshotClient::update(const sp<IBinder>& display, argument
606 return s->captureScreen(display, &mHeap,
611 status_t ScreenshotClient::update(const sp<IBinder>& display, argument
617 return s->captureScreen(display, &mHeap,
572 getDisplayInfo( const sp<IBinder>& display, DisplayInfo* info) argument
H A DSurfaceTexture.cpp188 status_t SurfaceTexture::releaseBufferLocked(int buf, EGLDisplay display, argument
/frameworks/native/opengl/libagl/
H A Degl.cpp1377 EGLDisplay eglGetDisplay(NativeDisplayType display) argument
1388 if (display == EGL_DEFAULT_DISPLAY) {
1391 d.type = display;
1821 // eglGetCurrentDisplay returns the current EGL display connection
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp111 EGLDisplay eglGetDisplay(EGLNativeDisplayType display) argument
115 uint32_t index = uint32_t(display);
124 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display);
513 // a valid but uninitialized display.
H A Degl_cache.cpp88 void egl_cache_t::initialize(egl_display_t *display) { argument
93 const char* exts = display->disp.queryString.extensions;
113 eglSetBlobCacheFuncsANDROID(display->disp.dpy,
H A Degl_display.cpp117 EGLDisplay egl_display_t::getDisplay(EGLNativeDisplayType display) { argument
126 EGLDisplay dpy = cnx->egl.eglGetDisplay(display);
134 return EGLDisplay(uintptr_t(display) + 1U);
189 // display is now initialized
192 // get the query-strings for this display for each implementation
208 // the query strings are per-display
271 * "Termination of a display that has already been terminated,
278 // this is specific to Android, display termination is ref-counted.
322 egl_display_t* display = cur_c->getDisplay(); local
323 if (display) {
[all...]
H A Degl_object.cpp35 display(disp), count(1) {
37 display->addObject(this);
45 display->removeObject(this);
58 bool egl_object_t::get(egl_display_t const* display, egl_object_t* object) { argument
61 return display->getObject(object);
H A Degl_object.h44 egl_display_t *display; member in class:android::egl_object_t
51 egl_object_t(egl_display_t* display);
56 inline egl_display_t* getDisplay() const { return display; }
60 static bool get(egl_display_t const* display, egl_object_t* object);
71 explicit LocalRef(egl_display_t const* display, T o) : ref(0) { argument
73 if (o && egl_object_t::get(display, native)) {
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { argument
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
89 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) { argument
90 egl.eglDestroyContext(display, context);
121 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { argument
124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
137 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, argument
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
177 printConfigs(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { argument
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
89 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) { argument
90 egl.eglDestroyContext(display, context);
121 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { argument
124 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
137 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, argument
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
177 printConfigs(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java83 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { argument
87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
92 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) { argument
93 egl.eglDestroyContext(display, context);
124 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { argument
127 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config);
135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
136 // printConfigs(egl, display, configs);
137 return chooseConfig(egl, display, configs);
140 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, argument
171 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
180 printConfigs(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
190 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp66 * Initialize the display to the specified values.
132 * Create our display's surface
137 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
138 surface = eglCreateWindowSurface(display, config, window, NULL);
139 eglQuerySurface(display, surface, EGL_WIDTH, &mDisplayWidth);
140 eglQuerySurface(display, surface, EGL_HEIGHT, &mDisplayHeight);
142 mDisplay = display;
155 // Name the display. The name will be replaced shortly if the display
169 // initialize the display orientatio
[all...]
H A DSurfaceFlinger.cpp139 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); local
140 eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
141 eglTerminate(display);
172 // no more references, this display must be terminated
196 ALOGE("getDefaultDisplay: id=%d is not a valid default display id", id);
329 EGLConfig SurfaceFlinger::selectEGLConfig(EGLDisplay display, EGLint nativeVisualId) { argument
344 err = selectConfigForAttribute(display, attribs, EGL_NONE, EGL_NONE, &config);
351 err = selectConfigForAttribute(display, attribs,
359 err = selectConfigForAttribute(display, attribs,
370 err = selectConfigForAttribute(display, attrib
386 createGLContext(EGLDisplay display, EGLConfig config) argument
402 initializeGL(EGLDisplay display) argument
603 getDisplayInfo(const sp<IBinder>& display, DisplayInfo* info) argument
2074 unblank(const sp<IBinder>& display) argument
2097 blank(const sp<IBinder>& display) argument
2604 captureScreenImplLocked(const sp<IBinder>& display, sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f, uint32_t sw, uint32_t sh, uint32_t minLayerZ, uint32_t maxLayerZ) argument
2732 captureScreen(const sp<IBinder>& display, sp<IMemoryHeap>* heap, uint32_t* width, uint32_t* height, PixelFormat* format, uint32_t sw, uint32_t sh, uint32_t minLayerZ, uint32_t maxLayerZ) argument
2746 sp<IBinder> display; member in class:android::MessageCaptureScreen
2757 MessageCaptureScreen(SurfaceFlinger* flinger, const sp<IBinder>& display, sp<IMemoryHeap>* heap, uint32_t* w, uint32_t* h, PixelFormat* f, uint32_t sw, uint32_t sh, uint32_t minLayerZ, uint32_t maxLayerZ) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContext.java934 public Context createDisplayContext(Display display) { argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java363 // that area of the display from all other windows.
950 public void setInitialDisplaySize(Display display, int width, int height, int density) { argument
951 mDisplay = display;
1051 // For demo purposes, allow the rotation of the HDMI display to be controlled.
1398 // used to highlight the magnified portion of a display
1401 // used to simulate secondary display devices
1482 // bar at the top of the display. We don't count that as part of the
1587 // Whoops, there is no way to display an animation/preview
2570 // The effective display frame of the attached window depends on
2574 // the display fram
[all...]
/frameworks/base/services/java/com/android/server/display/
H A DDisplayAdapter.java17 package com.android.server.display;
25 * A display adapter makes zero or more display devices available to the system
28 * For now, all display adapters are registered in the system server but
56 * Gets the object that the display adapter should synchronize on when handling
57 * calls that come in from outside of the display manager service.
64 * Gets the display adapter's context.
71 * Gets a handler that the display adapter may use to post asynchronous messages.
78 * Gets the display adapter name for debugging purposes.
85 * Registers the display adapte
[all...]
H A DDisplayDevice.java17 package com.android.server.display;
26 * Represents a physical display device such as the built-in display
27 * an external monitor, or a WiFi display.
36 // The display device does not manage these properties itself, they are set by
37 // the display manager service. The display device shouldn't really be looking at these.
43 // The display device owns its surface, but it should only set it
53 * Gets the display adapter that owns the display devic
[all...]
H A DDisplayDeviceInfo.java17 package com.android.server.display;
26 * Describes the characteristics of a physical display device.
30 * Flag: Indicates that this display device should be considered the default display
36 * Flag: Indicates that the orientation of this display device is coupled to the
37 * rotation of its associated logical display.
39 * This flag should be applied to the default display to indicate that the user
40 * physically rotates the display when content is presented in a different orientation.
41 * The display manager will apply a coordinate transformation assuming that the
42 * physical orientation of the display matche
[all...]
H A DDisplayManagerService.java17 package com.android.server.display;
24 import android.hardware.display.DisplayManagerGlobal;
25 import android.hardware.display.IDisplayManager;
26 import android.hardware.display.IDisplayManagerCallback;
27 import android.hardware.display.WifiDisplayStatus;
49 * decides how to configure logical displays based on the physical display devices currently
53 * The display manager service relies on a collection of {@link DisplayAdapter} components,
54 * for discovering and configuring physical display devices attached to the system.
55 * There are separate display adapters for each manner that devices are attached:
56 * one display adapte
793 setViewportLocked(DisplayViewport viewport, LogicalDisplay display, DisplayDevice device) argument
[all...]

Completed in 299 milliseconds

123