/openbmc/u-boot/board/gdsys/common/ |
H A D | osd.c | 38 #define OSD_SET_REG(screen, fld, val) \ argument 40 if (screen >= OSD_DH_BASE) \ 41 FPGA_SET_REG(screen - OSD_DH_BASE, osd1.fld, val); \ 43 FPGA_SET_REG(screen, osd0.fld, val); \ 46 #define OSD_SET_REG(screen, fld, val) \ argument 47 FPGA_SET_REG(screen, osd0.fld, val) 51 #define OSD_GET_REG(screen, fld, val) \ argument 53 if (screen >= OSD_DH_BASE) \ 54 FPGA_GET_REG(screen - OSD_DH_BASE, osd1.fld, val); \ 56 FPGA_GET_REG(screen, osd0.fld, val); \ [all …]
|
H A D | osd.h | 10 int ch7301_probe(unsigned screen, bool power); 11 int osd_probe(unsigned screen);
|
H A D | dp501.c | 139 int dp501_probe(unsigned screen, bool power) in dp501_probe() argument 142 uint8_t dp501_addr = dp501_base[screen]; in dp501_probe() 148 i2c_set_bus_num(dp501_i2c[screen]); in dp501_probe()
|
H A D | ch7301.c | 39 int ch7301_probe(unsigned screen, bool power) in ch7301_probe() argument 43 i2c_set_bus_num(ch7301_i2c[screen]); in ch7301_probe()
|
/openbmc/openbmc/poky/bitbake/lib/bb/ui/ |
H A D | taskexp_ncurses.py | 117 def alert(msg,screen): argument 119 screen.addstr(0, 10, '[%-4s]' % msg) 120 screen.refresh(); 125 screen.addch(0, i, curses.ACS_HLINE) 127 screen.addstr(0, 10, '-' * 14) 128 screen.refresh(); 133 nbox_ojb.screen.addstr(0, 50, '[I=%2d,O=%2d,S=%3s,H=%2d,M=%4d]' % ( 140 nbox_ojb.screen.refresh(); 244 box.screen.addch(y, x + i, curses.ACS_HLINE, box.color) 245 box.screen.addch(y + h - 1, x + i, curses.ACS_HLINE, box.color) [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/screen/ |
H A D | screen_5.0.0.bb | 2 DESCRIPTION = "Screen is a full-screen window manager \ 5 HOMEPAGE = "http://www.gnu.org/software/screen/" 6 BUGTRACKER = "https://savannah.gnu.org/bugs/?func=additem&group=screen" 12 file://screen.h;endline=26;md5=b8dc717c9a3dba842ae6c44ca0f73f52 \ 19 SRC_URI = "${GNU_MIRROR}/screen/screen-${PV}.tar.gz \ 20 ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'file://screen.pam', '', d)} \ 36 install -D -m 644 ${UNPACKDIR}/screen.pam ${D}/${sysconfdir}/pam.d/screen 41 …grep -q "^${bindir}/screen$" $D${sysconfdir}/shells || echo ${bindir}/screen >> $D${sysconfdir}/sh… 45 printf "$(grep -v "^${bindir}/screen$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
|
/openbmc/linux/tools/kvm/kvm_stat/ |
H A D | kvm_stat | 1062 self.screen = None 1071 self.screen = curses.initscr() 1096 if self.screen: 1097 self.screen.keypad(0) 1123 self.screen.addstr(row, 2, '%8s %-60s' % 1130 self.screen.addstr(row, 2, '%8s %-60s' % (line[0], line[1])) 1132 if row >= self.screen.getmaxyx()[0]: 1135 self.screen.addstr(row + 1, 2, 'Not available') 1186 self.screen.addstr(4, 1, 'Updating pid filter...') 1187 self.screen.refresh() [all …]
|
/openbmc/linux/drivers/accessibility/speakup/ |
H A D | DefaultKeyAssignments | 12 InsKeyPad-8 say from top of screen to reading cursor. 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.
|
/openbmc/qemu/docs/interop/ |
H A D | barrier.rst | 66 The client screen must send this message in response to the 68 screen's resolution changes. In this case, the client screen should 71 the new screen area. 101 Enter screen. 103 ``x``, ``y`` = entering screen absolute coordinates 106 screens. the secondary screen must return this number 111 screen. the secondary screen should adjust its toggle 122 Leaving screen. the secondary screen should send clipboard data in 136 Grab clipboard. Sent by screen when some other app on that screen 176 client screen's barrierCmdDInfo. This is sent for every [all …]
|
/openbmc/linux/drivers/gpu/drm/vboxvideo/ |
H A D | vbva_base.c | 108 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()
|
/openbmc/openbmc/poky/meta/recipes-sato/rxvt-unicode/rxvt-unicode/ |
H A D | xwc.patch | 3 diff -ruN rxvt-unicode-9.10-orig//src/screen.C rxvt-unicode-9.10/src/screen.C 4 --- rxvt-unicode-9.10-orig//src/screen.C 2011-04-19 13:34:01.327664984 +0800 5 +++ rxvt-unicode-9.10/src/screen.C 2011-04-19 13:34:47.037665001 +0800
|
/openbmc/phosphor-webui/app/common/styles/elements/ |
H A D | paginate.scss | 48 /* screen readers only */ 85 @media only screen and ( max-width: 64.063em ) { 88 /* screen readers only */ 98 @media only screen and ( max-width: 40.063em ) { 100 /* screen readers only */ 120 @media only screen and ( max-width: 30.063em ) { 126 /* screen readers only */ 136 @media only screen and ( max-width: 15.063em ) { /* For watches? */
|
/openbmc/linux/Documentation/devicetree/bindings/input/touchscreen/ |
H A D | imx6ul_tsc.txt | 10 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.
|
/openbmc/linux/tools/perf/ui/gtk/ |
H A D | browser.c | 19 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()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/tiptop/tiptop/ |
H A D | 0001-Fix-a-lot-of-Werror-format-security-errors-with-mvwp.patch | 20 @@ -61,7 +61,7 @@ void show_help_win(WINDOW* win, screen_t* screen) 23 /* screen description */ 24 - mvwprintw(win, 2, 1, screen->desc); 25 + mvwprintw(win, 2, 1, "%s", screen->desc);
|
/openbmc/qemu/docs/system/ |
H A D | keys.rst.inc | 9 Toggle full screen 12 Enlarge the screen 15 Shrink the screen 18 Restore the screen's un-scaled dimensions
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-gnome/gtk+/gtk+/ |
H A D | xsettings.patch | 9 GdkScreenX11 *screen = data; 11 - if (xsettings_client_process_event (screen->xsettings_client, (XEvent *)xevent)) 15 + xsettings_client_process_event (screen->xsettings_client, (XEvent *)xevent);
|
/openbmc/u-boot/doc/ |
H A D | README.splashprepare | 5 common/splash.c. It is called as part of the splash screen display 21 - If splashsource is set to an unsupported value, do not load a splash screen. 25 screen data is loaded as a file. The name of the splash screen file can be
|
/openbmc/linux/Documentation/devicetree/bindings/iio/ |
H A D | mount-matrix.txt | 25 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
|
/openbmc/linux/drivers/staging/media/av7110/ |
H A D | video-stop.rst | 47 - 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
|
/openbmc/linux/drivers/s390/char/ |
H A D | con3270.c | 100 struct tty3270_line *screen; member 193 return tp->screen + tty3270_line_increment(tp, tp->line_write_start, num); in tty3270_get_write_line() 198 return tp->screen + tty3270_line_increment(tp, tp->line_view_start, num - tp->nr_up); in tty3270_get_view_line() 488 tp->screen[i].dirty = 0; in tty3270_update_lines_visible() 893 struct tty3270_line *screen; in tty3270_alloc_screen() local 897 screen = kcalloc(allocated, sizeof(struct tty3270_line), GFP_KERNEL); in tty3270_alloc_screen() 898 if (!screen) in tty3270_alloc_screen() 901 screen[lines].cells = kcalloc(cols, sizeof(struct tty3270_cell), GFP_KERNEL); in tty3270_alloc_screen() 902 if (!screen[lines].cells) in tty3270_alloc_screen() 906 return screen; in tty3270_alloc_screen() [all …]
|
/openbmc/qemu/ui/ |
H A D | cocoa.m | 302 QEMUScreen screen; field 371 screen.width = frameRect.size.width; 372 screen.height = frameRect.size.height; 456 position.y = screen.height - mouseY; 523 // draw screen bitmap directly to Core Graphics context 581 scaled.width = screen.width * max.height; 582 scaled.height = screen.height * max.width; 585 * Here screen is our guest's output size, and max is the size of the 586 * largest possible area of the screen we can display on. 587 * We want to scale up (screen.width x screen.height) by either: [all …]
|
/openbmc/linux/Documentation/fb/ |
H A D | framebuffer.rst | 45 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 …]
|
/openbmc/linux/Documentation/devicetree/bindings/leds/ |
H A D | leds-el15203000.txt | 12 Screen light tube LED which surrounds vending machine screen and 56 /* screen frame */ 59 function = "screen";
|
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-app/ |
H A D | xrandr_1.5.3.bb | 6 reflection of the outputs for a screen. It can also set the screen \
|