Home
last modified time | relevance | path

Searched refs:DisplayState (Results 1 – 25 of 32) sorted by relevance

12

/external/qemu/
Dconsole.h172 void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h);
173 void (*dpy_resize)(struct DisplayState *s);
174 void (*dpy_setdata)(struct DisplayState *s);
175 void (*dpy_refresh)(struct DisplayState *s);
176 void (*dpy_copy)(struct DisplayState *s, int src_x, int src_y,
178 void (*dpy_fill)(struct DisplayState *s, int x, int y,
180 void (*dpy_text_cursor)(struct DisplayState *s, int x, int y);
185 void (*dpy_enablezoom)(struct DisplayState *s, int width, int height);
210 struct DisplayState { struct
223 struct DisplayState *next; argument
[all …]
Dconsole.c37 DisplayState *qemu_graphic_console_init(vga_hw_update_ptr update,
45 void original_qemu_console_resize(DisplayState *ds, int width, int height);
152 DisplayState *ds;
191 static DisplayState *display_state;
237 static unsigned int vga_get_color(DisplayState *ds, unsigned int rgba) in vga_get_color()
272 void vga_fill_rect(DisplayState *ds, int posx, int posy, in vga_fill_rect()
308 static void vga_bitblt(DisplayState *ds, int xs, int ys, int xd, int yd, int w, int h) in vga_bitblt()
422 static inline unsigned int col_expand(DisplayState *ds, unsigned int col) in col_expand()
472 static void vga_putcharxy(DisplayState *ds, int x, int y, int ch, in vga_putcharxy()
1112 DisplayState *ds = s->ds; in console_select()
[all …]
Dcurses.c48 static void curses_update(DisplayState *ds, int x, int y, int w, int h) in curses_update()
99 static void curses_resize(DisplayState *ds) in curses_resize()
137 static void curses_cursor_position(DisplayState *ds, int x, int y) in curses_cursor_position()
164 static void curses_refresh(DisplayState *ds) in curses_refresh()
339 void curses_display_init(DisplayState *ds, int full_screen) in curses_display_init()
Dvnc.h91 DisplayState *ds;
118 DisplayState *ds;
/external/qemu/android/
Ddisplay-core.c26 coredisplay_refresh(DisplayState* ds) in coredisplay_refresh()
40 coredisplay_update(DisplayState* ds, int x, int y, int w, int h) in coredisplay_update()
54 coredisplay_resize(DisplayState* ds) in coredisplay_resize()
60 coredisplay_init(DisplayState* ds) in coredisplay_init()
Ddisplay.c56 android_display_update(DisplayState *ds, int x, int y, int w, int h) in android_display_update()
63 android_display_resize(DisplayState *ds) in android_display_resize()
70 android_display_refresh(DisplayState *ds) in android_display_refresh()
77 void android_display_init(DisplayState* ds, QFrameBuffer* qf) in android_display_init()
Ddisplay-core.h29 extern void coredisplay_init(DisplayState* ds);
Ddisplay.h18 extern void android_display_init(DisplayState* ds, QFrameBuffer* qfbuff);
Dmultitouch-screen.c65 DisplayState* ds;
421 DisplayState* const ds = get_displaystate(); in multitouch_init()
/external/chromium_org/chrome/browser/extensions/api/braille_display_private/
Dbraille_controller_stub.cc20 virtual scoped_ptr<DisplayState> GetDisplayState() OVERRIDE;
55 scoped_ptr<DisplayState> BrailleControllerImpl::GetDisplayState() { in GetDisplayState()
56 return scoped_ptr<DisplayState>(new DisplayState()).Pass(); in GetDisplayState()
Dstub_braille_controller.cc14 scoped_ptr<DisplayState> StubBrailleController::GetDisplayState() { in GetDisplayState()
15 return scoped_ptr<DisplayState>(new DisplayState); in GetDisplayState()
Dbraille_controller_brlapi.cc79 scoped_ptr<DisplayState> BrailleControllerImpl::GetDisplayState() { in GetDisplayState()
82 scoped_ptr<DisplayState> display_state(new DisplayState); in GetDisplayState()
258 DispatchOnDisplayStateChanged(scoped_ptr<DisplayState>(new DisplayState())); in Disconnect()
349 scoped_ptr<DisplayState> new_state) { in DispatchOnDisplayStateChanged()
Dbraille_controller.h26 virtual scoped_ptr<DisplayState> GetDisplayState() = 0;
42 virtual void OnDisplayStateChanged(const DisplayState& display_state) {} in OnDisplayStateChanged()
Dbraille_controller_brlapi.h26 virtual scoped_ptr<DisplayState> GetDisplayState() OVERRIDE;
66 void DispatchOnDisplayStateChanged(scoped_ptr<DisplayState> new_state);
Dbraille_display_private_api.cc22 using extensions::api::braille_display_private::DisplayState;
63 const DisplayState& display_state) { in OnDisplayStateChanged()
Dstub_braille_controller.h18 virtual scoped_ptr<DisplayState> GetDisplayState() OVERRIDE;
Dbraille_display_private_api.h39 const api::braille_display_private::DisplayState& display_state) OVERRIDE;
/external/qemu/docs/
DDISPLAY-STATE.TXT1 This tries to document the mess that is DisplayState in QEMU.
9 A DisplayState holds state for stuff to be displayed on QEMU. More
12 - A DisplayState owns a 'DisplaySurface' which is nothing more than a
16 - A DisplayState also holds a 'DisplayAllocator' which allows it to
22 - A DisplayState also holds a list of DisplayChangeListener object.
41 registered for a given DisplayState. For example, dpy_update(ds,x,y,w,h)
49 A "console" is something that can write pixels into a DisplayState.
55 A "Graphical console" creates and owns a DisplayState. It is used when one
58 function graphic_console_init() to create the DisplayState. Note that
66 DisplayState *graphic_console_init(vga_hw_update_ptr update,
[all …]
DANDROID-FRAMEBUFFER.TXT60 3 - DisplayState (console.h):
63 The upstream QEMU sources use a DisplayState object to model the state
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLPlugInElement.h118 enum DisplayState { enum
123 DisplayState displayState() const { return m_displayState; } in displayState()
124 void setDisplayState(DisplayState state) { m_displayState = state; } in setDisplayState()
136 DisplayState m_displayState;
/external/chromium_org/chrome/common/extensions/api/
Dbraille_display_private.idl44 dictionary DisplayState {
51 callback DisplayStateCallback = void(DisplayState result);
68 static void onDisplayStateChanged(DisplayState state);
/external/chromium_org/chrome/browser/chromeos/accessibility/
Daccessibility_manager.h156 scoped_ptr<extensions::api::braille_display_private::DisplayState> state);
171 const extensions::api::braille_display_private::DisplayState&
Daccessibility_manager_browsertest.cc30 using extensions::api::braille_display_private::DisplayState;
105 virtual scoped_ptr<DisplayState> GetDisplayState() OVERRIDE { in GetDisplayState()
106 scoped_ptr<DisplayState> state(new DisplayState()); in GetDisplayState()
/external/qemu/android/protocol/
Dfb-updates-proxy.c40 DisplayState* ds;
260 DisplayState* ds = get_displaystate(); in proxyFb_create()
/external/qemu/hw/
Dgoldfish_fb.c50 DisplayState* ds;
71 DisplayState* ds = s->ds; in goldfish_fb_save()
104 DisplayState* ds = s->ds; in goldfish_fb_load()

12