Home
last modified time | relevance | path

Searched full:screen (Results 1 – 25 of 667) sorted by relevance

12345678910>>...27

/Linux-v5.15/drivers/accessibility/speakup/
DDefaultKeyAssignments12 InsKeyPad-8 say from top of screen to reading cursor.
25 KeyPad-plus Say Entire Screen
26 InsKeyPad-plus Say from reading cursor line to bottom of screen.
31 InsKeyPad-9 Move reading cursor to top of screen (insert pgup)
32 InsKeyPad-3 Move reading cursor to bottom of screen (insert pgdn)
33 InsKeyPad-7 Move reading cursor to left edge of screen (insert home)
34 InsKeyPad-1 Move reading cursor to right edge of screen (insert end)
39 allowed value for the row or column for your current screen.
40 KeyPad-/ Mark and Cut screen region.
41 InsKeyPad-/ Paste screen region into any console.
/Linux-v5.15/tools/kvm/kvm_stat/
Dkvm_stat994 self.screen = None
1003 self.screen = curses.initscr()
1028 if self.screen:
1029 self.screen.keypad(0)
1055 self.screen.addstr(row, 2, '%8s %-60s' %
1062 self.screen.addstr(row, 2, '%8s %-60s' % (line[0], line[1]))
1064 if row >= self.screen.getmaxyx()[0]:
1067 self.screen.addstr(row + 1, 2, 'Not available')
1118 self.screen.addstr(4, 1, 'Updating pid filter...')
1119 self.screen.refresh()
[all …]
/Linux-v5.15/Documentation/fb/
Dapi.rst24 Device and driver capabilities are reported in the fixed screen information
51 additional information, which are stored in the variable screen information
65 screen information line_length field.
83 belonging to different planes, is stored in the fixed screen information
89 stored in the variable screen information grayscale field.
94 specified by the variable screen information bpp field.
105 specified by the variable screen information bpp field.
119 Each component is stored in a macropixel according to the variable screen
129 screen information bits_per_pixel field.
136 Each component is stored in a macropixel according to the variable screen
[all …]
Dframebuffer.rst45 read and write their contents. You can, for example, make a screen snapshot by::
83 organization of the screen memory (planes, packed pixels, ...) and address
84 and length of the screen memory.
103 application programs is the screen organization (bitplanes or chunky pixels
158 A monitor draws an image on the screen by using an electron beam (3 electron
160 the screen is covered by a pattern of colored phosphors (pixels). If a phosphor
164 from the top to the bottom of the screen. By modifying the intensity of the
168 screen and to the next line: this is called the horizontal retrace. After the
169 whole screen (frame) was painted, the beam moves back to the upper left corner:
179 If the screen resolution is 640x480, it will take::
[all …]
/Linux-v5.15/drivers/s390/char/
Dtty3270.c59 * 1) describe line orientation & lines list concept against screen
60 * 2) describe conversion of screen to lines
80 /* Current tty screen. */
84 struct tty3270_line *screen; member
120 #define TTY_UPDATE_ALL 16 /* Recreate screen. */
134 * The input line are the two last lines of the screen.
191 * The status line is the last line of the screen. It shows the string
192 * "Running"/"Holding" in the lower right corner of the screen.
252 * containing all lines that will fit on the screen. in tty3270_rebuild_update()
324 * Create a blank screen and remove all lines from the history.
[all …]
/Linux-v5.15/Documentation/devicetree/bindings/input/touchscreen/
Dimx6ul_tsc.txt10 This xnur-gpio returns to low once the finger leave the touch screen (The
15 Before X-axis or Y-axis measurement, the screen need some time before
17 This value depends on the touch screen.
18 - pre-charge-time: the touch screen need some time to precharge.
19 This value depends on the touch screen.
/Linux-v5.15/Documentation/devicetree/bindings/iio/
Dmount-matrix.txt25 For example a device with some kind of screen, where the user is supposed to
27 mounted on the same chassis as this screen, will likely take the screen as
29 screen and (z) being depth, the axis perpendicular to the screen.
31 For a screen you probably want (x) coordinates to go from negative on the left
33 and (z) depth to be negative under the screen and positive in front of it,
55 9.81 m/s^2 upwards along the (z) axis, i.e. out of the screen when the device
56 is held with its screen flat on the planets surface and 0 on the other axes,
132 device with a screen lying flat on a table), you should get a negative value
/Linux-v5.15/drivers/gpu/drm/vboxvideo/
Dvbva_base.c108 struct gen_pool *ctx, s32 screen, bool enable) in vbva_inform_host() argument
120 if (screen >= 0) { in vbva_inform_host()
122 p->screen_id = screen; in vbva_inform_host()
138 struct vbva_buffer *vbva, s32 screen) in vbva_enable() argument
147 ret = vbva_inform_host(vbva_ctx, ctx, screen, true); in vbva_enable()
149 vbva_disable(vbva_ctx, ctx, screen); in vbva_enable()
155 s32 screen) in vbva_disable() argument
161 vbva_inform_host(vbva_ctx, ctx, screen, false); in vbva_disable()
Dvboxvideo.h226 /* Index of the screen, assigned by the guest. */
229 /* The screen offset in VRAM, the framebuffer starts here. */
235 /* The recommended maximum size of the VRAM memory for the screen. */
264 /* Which view contains the screen. */
267 /* Physical X origin relative to the primary screen. */
270 /* Physical Y origin relative to the primary screen. */
279 /* Width of the screen. */
282 /* Height of the screen. */
403 * end with ~0. The whole structure can legally be set to ~0 to skip a screen.
421 * for any screen, at which time it is reset to the bounding rectangle of all
[all …]
Dvboxvideo_guest.h12 * information to the host via VBVA. Each screen has its own VBVA buffer.
15 /* Offset of the buffer in the VRAM section for the screen */
41 struct vbva_buffer *vbva, s32 screen);
43 s32 screen);
Dmodesetting.c17 * @display: The screen number.
19 * @origin_y: The vertical displacement relative to the first screen.
59 * resize event for any screen, at which time it is
64 * @origin_x: Upper left X co-ordinate relative to the first screen.
65 * @origin_y: Upper left Y co-ordinate relative to the first screen.
/Linux-v5.15/tools/perf/ui/gtk/
Dbrowser.c19 GdkScreen *screen; in perf_gtk__resize_window() local
24 screen = gtk_widget_get_screen(window); in perf_gtk__resize_window()
26 monitor = gdk_screen_get_monitor_at_window(screen, window->window); in perf_gtk__resize_window()
28 gdk_screen_get_monitor_geometry(screen, monitor, &rect); in perf_gtk__resize_window()
/Linux-v5.15/drivers/gpu/drm/vmwgfx/
Dvmwgfx_stdu.c65 * @buf: buffer object when DMA-ing between buffer and screen targets.
66 * @sid: Surface ID when copying between surface and screen targets.
138 * Screen Target Display Unit CRTC Functions
153 * vmw_stdu_define_st - Defines a Screen Target
156 * @stdu: display unit to create a Screen Target for
158 * @crtc_x: X coordinate of screen target relative to framebuffer origin.
159 * @crtc_y: Y coordinate of screen target relative to framebuffer origin.
207 * vmw_stdu_bind_st - Binds a surface to a Screen Target
211 * @res: Buffer to bind to the screen target. Set to NULL to blank screen.
213 * Binding a surface to a Screen Target the same as flipping
[all …]
Dvmwgfx_scrn.c46 * blit surface to screen command.
88 * Display unit using screen objects.
107 * Screen Object Display Unit CRTC functions
116 * Send the fifo command to create a screen.
164 * Send the fifo command to destroy a screen.
205 * vmw_sou_crtc_mode_set_nofb - Create new screen
207 * @crtc: CRTC associated with the new screen
209 * This function creates/destroys a screen. This function cannot fail, so if
233 DRM_ERROR("Failed to destroy Screen Object\n"); in vmw_sou_crtc_mode_set_nofb()
254 DRM_ERROR("Failed to define Screen Object %dx%d\n", in vmw_sou_crtc_mode_set_nofb()
[all …]
/Linux-v5.15/Documentation/devicetree/bindings/leds/
Dleds-el15203000.txt12 Screen light tube LED which surrounds vending machine screen and
56 /* screen frame */
59 function = "screen";
/Linux-v5.15/include/linux/mfd/
Dmxs-lradc.h123 * CH2 -- Touch screen XPUL
124 * CH3 -- Touch screen YPLL
125 * CH4 -- Touch screen XNUL
126 * CH5 -- Touch screen YNLR
127 * CH6 -- Touch screen WIPER (5-wire only)
/Linux-v5.15/fs/nls/
DKconfig285 correctly on the screen, you need to include the appropriate
294 correctly on the screen, you need to include the appropriate
324 correctly on the screen, you need to include the appropriate
336 correctly on the screen, you need to include the appropriate
347 correctly on the screen, you need to include the appropriate
357 correctly on the screen, you need to include the appropriate
367 correctly on the screen, you need to include the appropriate
378 correctly on the screen, you need to include the appropriate
387 correctly on the screen, you need to include the appropriate
396 correctly on the screen, you need to include the appropriate
[all …]
/Linux-v5.15/include/uapi/linux/
Dvt.h56 unsigned short v_vlin; /* number of pixel rows on screen */
58 unsigned short v_vcol; /* number of pixel columns on screen */
69 #define VT_EVENT_BLANK 0x0002 /* Screen blank */
70 #define VT_EVENT_UNBLANK 0x0004 /* Screen unblank */
/Linux-v5.15/drivers/staging/media/av7110/
Dvideo-stop.rst47 - Indicates how the screen shall be handled.
52 - TRUE: Blank screen when stop.
66 stream. Depending on the input parameter, the screen can be blanked out
/Linux-v5.15/Documentation/ABI/stable/
Dsysfs-driver-speakup70 the say screen command is used before the
71 entire screen is read.
74 screen command is used, and one then types on the keyboard,
75 speakup will continue to say the whole screen regardless until
87 Description: Controls the level of punctuation spoken as the screen is
114 the screen with speakup's screen review commands. The other
188 screen edges and cursor tracking modes here.
266 screen reader. The parameters in this directory have the same
/Linux-v5.15/Documentation/s390/
D3270.ChangeLog7 screen height to omit the two rows used for input area, in
11 * Oversize 3270 screen widths may exceed GEOM_MAXINPLEN columns,
40 tubttybld.c and tubttyscl.c, for screen-building code and
D3270.rst78 3. You should immediately see a Linux login screen.
155 The screen you should now see contains a VM logo with input
201 The driver defines three areas on the 3270 screen: the log area, the
204 The log area takes up all but the bottom two lines of the screen. The
208 screen clears and more output is written, from the top down.
210 The input area extends from the beginning of the second-to-last screen
217 nothing. If you do nothing, the screen will clear in (default) 5 sec
/Linux-v5.15/Documentation/admin-guide/
Dbraille-console.rst4 To get early boot messages on a braille device (before userspace screen
24 :kbd:`PAGE-UP`/:kbd:`PAGE-DOWN` keys go at the top/bottom of the screen, and
26 to the cursor, hence providing very basic screen reviewing facility.
/Linux-v5.15/drivers/video/fbdev/
Dcyber2000fb.h250 #define EXT_X_START 0xc5 /* ext->screen, 16 bits */
251 #define EXT_X_END 0xc7 /* ext->screen, 16 bits */
252 #define EXT_Y_START 0xc9 /* ext->screen, 16 bits */
253 #define EXT_Y_END 0xcb /* ext->screen, 16 bits */
256 #define EXT_DDA_X_INIT 0xd1 /* ext->screen 16 bits */
257 #define EXT_DDA_X_INC 0xd3 /* ext->screen 16 bits */
258 #define EXT_DDA_Y_INIT 0xd5 /* ext->screen 16 bits */
259 #define EXT_DDA_Y_INC 0xd7 /* ext->screen 16 bits */
/Linux-v5.15/Documentation/devicetree/bindings/display/
Dsolomon,ssd1307fb.yaml36 Height in pixel of the screen driven by the controller
42 Width in pixel of the screen driven by the controller
48 Offset of pages (band of 8 pixels) that the screen is mapped to
59 Offset of columns (COL/SEG) that the screen is mapped to

12345678910>>...27