Home
last modified time | relevance | path

Searched refs:WINDOW (Results 1 – 25 of 53) sorted by relevance

123

/external/syslinux/gpxe/src/include/
Dcurses.h91 } WINDOW; typedef
93 extern WINDOW _stdscr;
218 extern int box ( WINDOW *, chtype, chtype ) __nonnull;
228 extern int copywin ( const WINDOW *, WINDOW *, int, int, int,
237 extern int delwin ( WINDOW * ) __nonnull;
238 extern WINDOW *derwin ( WINDOW *, int, int, int, int ) __nonnull;
240 extern WINDOW *dupwin ( WINDOW * ) __nonnull;
249 extern __pure chtype getbkgd ( WINDOW * ) __nonnull;
258 extern void idcok ( WINDOW *, bool );
259 extern int idlok ( WINDOW *, bool );
[all …]
/external/syslinux/gpxe/src/hci/mucurses/
Dwindows.c18 int delwin ( WINDOW *win ) { in delwin()
49 WINDOW *derwin ( WINDOW *parent, int nlines, int ncols, in derwin()
51 WINDOW *child; in derwin()
54 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL ) in derwin()
74 WINDOW *dupwin ( WINDOW *orig ) { in dupwin()
75 WINDOW *copy; in dupwin()
78 if ( ( copy = malloc( sizeof( WINDOW ) ) ) == NULL ) in dupwin()
99 int mvwin ( WINDOW *win, int y, int x ) { in mvwin()
121 WINDOW *newwin ( int nlines, int ncols, int begin_y, int begin_x ) { in newwin()
122 WINDOW *win; in newwin()
[all …]
Dmucurses.c13 static void _wupdcurs ( WINDOW *win ) __nonnull;
14 void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
15 void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
16 void _wcursback ( WINDOW *win ) __nonnull;
17 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
18 void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
19 int wmove ( WINDOW *win, int y, int x ) __nonnull;
21 WINDOW _stdscr = {
39 static void _wupdcurs ( WINDOW *win ) { in _wupdcurs()
51 void _wputch ( WINDOW *win, chtype ch, int wrap ) { in _wputch()
[all …]
Dwinattrs.c17 inline chtype getbkgd ( WINDOW *win ) { in getbkgd()
28 int wattroff ( WINDOW *win, int attrs ) { in wattroff()
40 int wattron ( WINDOW *win, int attrs ) { in wattron()
52 int wattrset ( WINDOW *win, int attrs ) { in wattrset()
66 int wattr_get ( WINDOW *win, attr_t *attrs, short *pair, in wattr_get()
81 int wattr_off ( WINDOW *win, attr_t attrs, in wattr_off()
95 int wattr_on ( WINDOW *win, attr_t attrs, in wattr_on()
110 int wattr_set ( WINDOW *win, attr_t attrs, short cpair, in wattr_set()
124 int wcolour_set ( WINDOW *win, short colour_pair_number, in wcolour_set()
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;
Dclear.c19 int wclrtobot ( WINDOW *win ) { in wclrtobot()
37 int wclrtoeol ( WINDOW *win ) { in wclrtoeol()
55 int wdelch ( WINDOW *win ) { in wdelch()
68 int wdeleteln ( WINDOW *win ) { in wdeleteln()
86 int werase ( WINDOW *win ) { in werase()
Dprint.c23 int waddch ( WINDOW *win, const chtype ch ) { in waddch()
36 int waddnstr ( WINDOW *win, const char *str, int n ) { in waddnstr()
43 WINDOW *win;
61 int vw_printw ( WINDOW *win, const char *fmt, va_list varglist ) { in vw_printw()
78 int wprintw ( WINDOW *win, const char *fmt, ... ) { in wprintw()
Dedging.c20 int box ( WINDOW *win, chtype verch, chtype horch ) { in box()
41 int wborder ( WINDOW *win, chtype ls, chtype rs, in wborder()
80 int whline ( WINDOW *win, chtype ch, int n ) { in whline()
100 int wvline ( WINDOW *win, chtype ch, int n ) { in wvline()
Dkb.c22 static int _wgetc ( WINDOW *win ) { in _wgetc()
53 int wgetch ( WINDOW *win ) { in wgetch()
86 int wgetnstr ( WINDOW *win, char *str, int n ) { in wgetnstr()
Dcursor.h22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) { in _restore_curs_pos()
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) { in _store_curs_pos()
Dprint_nadv.c19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) { in waddchnstr()
Dwininit.c17 WINDOW *initscr ( void ) { in initscr()
/external/toybox/kconfig/lxdialog/
Ddialog.h187 int on_key_esc(WINDOW *win);
193 void attr_clear(WINDOW * win, int height, int width, chtype attr);
195 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);
196 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
197 void print_title(WINDOW *dialog, const char *title, int width);
198 void draw_box(WINDOW * win, int y, int x, int height, int width, chtype box,
200 void draw_shadow(WINDOW * win, int y, int x, int height, int width);
Dtextbox.c25 static void print_page(WINDOW * win, int height, int width);
26 static void print_line(WINDOW * win, int row, int width);
28 static void print_position(WINDOW * win);
38 static void refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, in refresh_text_box()
57 WINDOW *dialog, *box; in dialog_textbox()
303 static void print_page(WINDOW * win, int height, int width) in print_page()
321 static void print_line(WINDOW * win, int row, int width) in print_line()
382 static void print_position(WINDOW * win) in print_position()
Dmenubox.c66 static void do_print_item(WINDOW * win, const char *item, int line_y, in do_print_item()
111 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows()
155 static void print_buttons(WINDOW * win, int height, int width, int selected) in print_buttons()
169 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll()
189 WINDOW *dialog, *menu; in dialog_menu()
Dchecklist.c31 static void print_item(WINDOW * win, int choice, int selected) in print_item()
59 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows()
95 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons()
116 WINDOW *dialog, *list; in dialog_checklist()
Dutil.c239 void attr_clear(WINDOW * win, int height, int width, chtype attr) in attr_clear()
297 void print_title(WINDOW *dialog, const char *title, int width) in print_title()
314 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap()
376 void print_button(WINDOW * win, const char *label, int y, int x, int selected) in print_button()
406 draw_box(WINDOW * win, int y, int x, int height, int width, in draw_box()
440 void draw_shadow(WINDOW * win, int y, int x, int height, int width) in draw_shadow()
489 int on_key_esc(WINDOW *win) in on_key_esc()
Dyesno.c27 static void print_buttons(WINDOW * dialog, int height, int width, int selected) in print_buttons()
45 WINDOW *dialog; in dialog_yesno()
/external/webrtc/talk/media/base/
Dscreencastid.h49 enum Type { INVALID, WINDOW, DESKTOP }; enumerator
54 : type_(WINDOW), window_(id) { in ScreencastId()
71 } else if (type_ == WINDOW) { in IsValid()
77 bool IsWindow() const { return type_ == WINDOW; } in IsWindow()
85 } else if (type_ == WINDOW) { in EqualsId()
/external/autotest/client/profilers/powertop/src/
Ddisplay.c38 static WINDOW *title_bar_window;
39 static WINDOW *cstate_window;
40 static WINDOW *wakeup_window;
41 static WINDOW *battery_power_window;
42 static WINDOW *timerstat_window;
43 static WINDOW *suggestion_window;
44 static WINDOW *status_bar_window;
/external/bart/docs/notebooks/sched/
DSchedDeadline.ipynb404 " print \"WINDOW -> [{:.2f}, {:.2f}]\".format(window[0],\n",
606 "WINDOW -> [0.00, 2.00]\n",
609 "WINDOW -> [2.00, 4.00]\n",
612 "WINDOW -> [4.00, 6.00]\n",
615 "WINDOW -> [6.00, 8.00]\n",
618 "WINDOW -> [8.00, 10.00]\n",
621 "WINDOW -> [10.00, 12.00]\n",
624 "WINDOW -> [12.00, 14.00]\n",
627 "WINDOW -> [14.00, 16.00]\n",
630 "WINDOW -> [16.00, 18.00]\n",
[all …]
/external/llvm/test/CodeGen/X86/
D2009-03-10-CoalescerBug.ll4 ….WINDOW = type { i16, i16, i16, i16, i16, i16, i16, i32, i32, i8, i8, i8, i8, i8, i8, i8, i8, i8, …
9 define i32 @pnoutrefresh(%struct.WINDOW* %win, i32 %pminrow, i32 %pmincol, i32 %sminrow, i32 %sminc…
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
D2009-03-10-CoalescerBug.ll4 ….WINDOW = type { i16, i16, i16, i16, i16, i16, i16, i32, i32, i8, i8, i8, i8, i8, i8, i8, i8, i8, …
9 define i32 @pnoutrefresh(%struct.WINDOW* %win, i32 %pminrow, i32 %pmincol, i32 %sminrow, i32 %sminc…
/external/clang/test/Preprocessor/
Dmacro_arg_slocentry_merge.h5 #define WINDOW win macro
7 extern void f P_((WINDOW win));
/external/syslinux/gpxe/src/include/gpxe/
Deditbox.h20 WINDOW *win;
40 WINDOW *win, unsigned int row, unsigned int col,

123