Searched refs:win (Results 1 - 25 of 227) sorted by relevance

12345678910

/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dclear.c16 * @v *win subject window
19 int wclrtobot ( WINDOW *win ) {
22 _store_curs_pos( win, &pos );
24 _wputc( win, ' ', WRAP );
25 } while ( win->curs_y + win->curs_x );
26 _restore_curs_pos( win, &pos );
34 * @v *win subject window
37 int wclrtoeol ( WINDOW *win ) {
40 _store_curs_pos( win,
[all...]
H A Dedging.c15 * @v *win window to be bordered
20 int box ( WINDOW *win, chtype verch, chtype horch ) { argument
21 chtype corner = '+' | win->attrs; /* default corner character */
22 return wborder( win, verch, verch, horch, horch,
30 * @v *win window to be bordered
41 int wborder ( WINDOW *win, chtype ls, chtype rs, argument
46 _store_curs_pos( win, &pos );
47 wmove(win,0,0);
49 _wputch(win,tl,WRAP);
50 while ( ( win
80 whline( WINDOW *win, chtype ch, int n ) argument
100 wvline( WINDOW *win, chtype ch, int n ) argument
[all...]
H A Dmucurses.c12 static void _wupdcurs ( WINDOW *win ) __nonnull;
13 void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
14 void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
15 void _wcursback ( WINDOW *win ) __nonnull;
16 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
17 void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
18 int wmove ( WINDOW *win, int y, int x ) __nonnull;
36 * @v *win window in which to update position
38 static void _wupdcurs ( WINDOW *win ) {
39 win
50 _wputch( WINDOW *win, chtype ch, int wrap ) argument
77 _wputc( WINDOW *win, char c, int wrap ) argument
107 _wputchstr( WINDOW *win, const chtype *chstr, int wrap, int n ) argument
121 _wputstr( WINDOW *win, const char *str, int wrap, int n ) argument
135 wmove( WINDOW *win, int y, int x ) argument
[all...]
H A Dwinattrs.c14 * @v *win subject window
17 inline chtype getbkgd ( WINDOW *win ) {
18 return win->attrs;
24 * @v win subject window
28 int wattroff ( WINDOW *win, int attrs ) { argument
29 win->attrs &= ~attrs;
36 * @v win subject window
40 int wattron ( WINDOW *win, int attrs ) { argument
41 win->attrs |= attrs;
48 * @v win subjec
52 wattrset( WINDOW *win, int attrs ) argument
66 wattr_get( WINDOW *win, attr_t *attrs, short *pair, void *opts __unused ) argument
81 wattr_off( WINDOW *win, attr_t attrs, void *opts __unused ) argument
95 wattr_on( WINDOW *win, attr_t attrs, void *opts __unused ) argument
110 wattr_set( WINDOW *win, attr_t attrs, short cpair, void *opts __unused ) argument
124 wcolour_set( WINDOW *win, short colour_pair_number, void *opts __unused ) argument
[all...]
H A Dcursor.h19 * @v *win window on which to operate
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) { argument
23 wmove ( win, pos->y, pos->x );
29 * @v *win window on which to operate
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) { argument
33 pos->y = win->curs_y;
34 pos->x = win->curs_x;
H A Dkb.c22 static int _wgetc ( WINDOW *win ) {
25 if ( win == NULL )
29 while ( ! win->scr->peek( win->scr ) ) {
39 c = win->scr->getc( win->scr );
42 _wputch( win, (chtype) ( c | win->attrs ), WRAP );
50 * @v *win window in which to echo input
53 int wgetch ( WINDOW *win ) {
86 wgetnstr( WINDOW *win, char *str, int n ) argument
[all...]
H A Dprint_nadv.c14 * @v *win window to be rendered in
19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) { argument
22 _store_curs_pos( win, &pos );
23 _wputchstr( win, chstr, NOWRAP, n );
24 _restore_curs_pos( win, &pos );
H A Dmucurses.h17 extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
18 extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
19 extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
20 extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
21 extern void _wcursback ( WINDOW *win ) __nonnull;
H A Dwindows.c15 * @v *win pointer to window being deleted
18 int delwin ( WINDOW *win ) {
19 if ( win == NULL )
26 wmove( win, 0, 0 );
29 _wputch( win, killch, WRAP );
30 } while ( win->curs_x + win->curs_y );
32 free( win );
94 * @v *win window to move
99 int mvwin ( WINDOW *win, in argument
122 WINDOW *win; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A DshrotpackYX.h69 Data *winBase, *win, *winLine; local
98 win = winLine;
104 *win = *sha++;
105 win += WINSTEPX(winStride);
106 *win = *sha++;
107 win += WINSTEPX(winStride);
108 *win = *sha++;
109 win += WINSTEPX(winStride);
110 *win = *sha++;
111 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A DshrotpackYX.h69 Data *winBase, *win, *winLine; local
98 win = winLine;
104 *win = *sha++;
105 win += WINSTEPX(winStride);
106 *win = *sha++;
107 win += WINSTEPX(winStride);
108 *win = *sha++;
109 win += WINSTEPX(winStride);
110 *win = *sha++;
111 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A DshrotpackYX.h76 Data *winBase, *win, *winLine; local
106 win = winLine;
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win += WINSTEPX(winStride);
119 *win = *sha++;
120 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A DshrotpackYX.h74 Data *winBase, *win, *winLine; local
104 win = winLine;
111 *win = *sha++;
112 win += WINSTEPX(winStride);
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A DshrotpackYX.h69 Data *winBase, *win, *winLine; local
98 win = winLine;
104 *win = *sha++;
105 win += WINSTEPX(winStride);
106 *win = *sha++;
107 win += WINSTEPX(winStride);
108 *win = *sha++;
109 win += WINSTEPX(winStride);
110 *win = *sha++;
111 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A DshrotpackYX.h69 Data *winBase, *win, *winLine; local
98 win = winLine;
104 *win = *sha++;
105 win += WINSTEPX(winStride);
106 *win = *sha++;
107 win += WINSTEPX(winStride);
108 *win = *sha++;
109 win += WINSTEPX(winStride);
110 *win = *sha++;
111 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A DshrotpackYX.h69 Data *winBase, *win, *winLine; local
98 win = winLine;
104 *win = *sha++;
105 win += WINSTEPX(winStride);
106 *win = *sha++;
107 win += WINSTEPX(winStride);
108 *win = *sha++;
109 win += WINSTEPX(winStride);
110 *win = *sha++;
111 win
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DshrotpackYX.h76 Data *winBase, *win, *winLine; local
106 win = winLine;
113 *win = *sha++;
114 win += WINSTEPX(winStride);
115 *win = *sha++;
116 win += WINSTEPX(winStride);
117 *win = *sha++;
118 win += WINSTEPX(winStride);
119 *win = *sha++;
120 win
[all...]

Completed in 88 milliseconds

12345678910