Home
last modified time | relevance | path

Searched defs:win (Results 1 – 25 of 1209) sorted by relevance

12345678910>>...49

/aosp_15_r20/external/coreboot/payloads/libpayload/curses/
H A Dtinycurses.c172 static inline NCURSES_CH_T render_char(WINDOW *win, NCURSES_CH_T ch) in render_char()
179 NCURSES_CH_T _nc_render(WINDOW *win, NCURSES_CH_T ch) in _nc_render()
199 /* D */ int clearok(WINDOW *win, bool flag) { win->_clear = flag; return OK; } in clearok()
220 int delwin(WINDOW *win) in delwin()
305 void immedok(WINDOW *win, bool flag) { win->_immed = flag; } in immedok()
344 int keypad (WINDOW *win, bool flag) { /* TODO */ return 0; } in keypad()
346 /* D */ int leaveok(WINDOW *win, bool flag) { win->_leaveok = flag; return OK; } in leaveok()
367 int mvwprintw(WINDOW *win, int y, int x, const char *fmt, ...) in mvwprintw()
387 WINDOW *win; in newwin() local
428 /* D */ int notimeout (WINDOW *win, bool f) { win->_notimeout = f; return OK; } in notimeout()
[all …]
H A Dcurses.h912 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win)) argument
913 #define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win)) argument
914 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win)) argument
915 #define getparyx(win,y,x) (y = getpary(win), x = getparx(win)) argument
943 #define getattrs(win) ((win)?(win)->_attrs:A_NORMAL) argument
944 #define getcurx(win) ((win)?(win)->_curx:ERR) argument
945 #define getcury(win) ((win)?(win)->_cury:ERR) argument
946 #define getbegx(win) ((win)?(win)->_begx:ERR) argument
947 #define getbegy(win) ((win)?(win)->_begy:ERR) argument
948 #define getmaxx(win) ((win)?((win)->_maxx + 1):ERR) argument
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/sysroot/usr/include/
Dcurses.h1057 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win)) argument
1058 #define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win)) argument
1059 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win)) argument
1060 #define getparyx(win,y,x) (y = getpary(win), x = getparx(win)) argument
1100 #define getattrs(win) NCURSES_CAST(int, (win) ? (win)->_attrs : A_NORMAL) argument
1101 #define getcurx(win) ((win) ? (win)->_curx : ERR) argument
1102 #define getcury(win) ((win) ? (win)->_cury : ERR) argument
1103 #define getbegx(win) ((win) ? (win)->_begx : ERR) argument
1104 #define getbegy(win) ((win) ? (win)->_begy : ERR) argument
1105 #define getmaxx(win) ((win) ? ((win)->_maxx + 1) : ERR) argument
[all …]
Dncurses.h1057 #define getyx(win,y,x) (y = getcury(win), x = getcurx(win)) argument
1058 #define getbegyx(win,y,x) (y = getbegy(win), x = getbegx(win)) argument
1059 #define getmaxyx(win,y,x) (y = getmaxy(win), x = getmaxx(win)) argument
1060 #define getparyx(win,y,x) (y = getpary(win), x = getparx(win)) argument
1100 #define getattrs(win) NCURSES_CAST(int, (win) ? (win)->_attrs : A_NORMAL) argument
1101 #define getcurx(win) ((win) ? (win)->_curx : ERR) argument
1102 #define getcury(win) ((win) ? (win)->_cury : ERR) argument
1103 #define getbegx(win) ((win) ? (win)->_begx : ERR) argument
1104 #define getbegy(win) ((win) ? (win)->_begy : ERR) argument
1105 #define getmaxx(win) ((win) ? ((win)->_maxx + 1) : ERR) argument
[all …]
/aosp_15_r20/external/coreboot/payloads/libpayload/curses/PDCurses/pdcurses/
H A Dwindow.c137 WINDOW *win; in PDC_makenew() local
190 WINDOW *PDC_makelines(WINDOW *win) in PDC_makelines()
223 void PDC_sync(WINDOW *win) in PDC_sync()
235 WINDOW *win; in newwin() local
255 int delwin(WINDOW *win) in delwin()
279 int mvwin(WINDOW *win, int y, int x) in mvwin()
296 WINDOW *win; in subwin() local
347 int mvderwin(WINDOW *win, int pary, int parx) in mvderwin()
372 WINDOW *dupwin(WINDOW *win) in dupwin()
426 WINDOW *resize_window(WINDOW *win, int nlines, int ncols) in resize_window()
[all …]
H A Dattr.c100 int wattroff(WINDOW *win, chtype attrs) in wattroff()
119 int wattron(WINDOW *win, chtype attrs) in wattron()
150 int wattrset(WINDOW *win, chtype attrs) in wattrset()
183 int wstandend(WINDOW *win) in wstandend()
190 int wstandout(WINDOW *win) in wstandout()
197 chtype getattrs(WINDOW *win) in getattrs()
202 int wcolor_set(WINDOW *win, short color_pair, void *opts) in wcolor_set()
221 int wattr_get(WINDOW *win, attr_t *attrs, short *color_pair, void *opts) in wattr_get()
244 int wattr_off(WINDOW *win, attr_t attrs, void *opts) in wattr_off()
258 int wattr_on(WINDOW *win, attr_t attrs, void *opts) in wattr_on()
[all …]
H A Dborder.c102 static chtype _attr_passthru(WINDOW *win, chtype ch) in _attr_passthru()
131 int wborder(WINDOW *win, chtype ls, chtype rs, chtype ts, chtype bs, in wborder()
189 int box(WINDOW *win, chtype verch, chtype horch) in box()
196 int whline(WINDOW *win, chtype ch, int n) in whline()
244 int mvwhline(WINDOW *win, int y, int x, chtype ch, int n) in mvwhline()
254 int wvline(WINDOW *win, chtype ch, int n) in wvline()
301 int mvwvline(WINDOW *win, int y, int x, chtype ch, int n) in mvwvline()
312 int wborder_set(WINDOW *win, const cchar_t *ls, const cchar_t *rs, in wborder_set()
332 int box_set(WINDOW *win, const cchar_t *verch, const cchar_t *horch) in box_set()
341 int whline_set(WINDOW *win, const cchar_t *wch, int n) in whline_set()
[all …]
H A Dgetyx.c73 int getbegy(WINDOW *win) in getbegy()
80 int getbegx(WINDOW *win) in getbegx()
87 int getcury(WINDOW *win) in getcury()
94 int getcurx(WINDOW *win) in getcurx()
101 int getpary(WINDOW *win) in getpary()
108 int getparx(WINDOW *win) in getparx()
115 int getmaxy(WINDOW *win) in getmaxy()
122 int getmaxx(WINDOW *win) in getmaxx()
H A Doutopts.c68 int clearok(WINDOW *win, bool bf) in clearok()
80 int idlok(WINDOW *win, bool bf) in idlok()
87 void idcok(WINDOW *win, bool bf) in idcok()
92 void immedok(WINDOW *win, bool bf) in immedok()
100 int leaveok(WINDOW *win, bool bf) in leaveok()
121 int wsetscrreg(WINDOW *win, int top, int bottom) in wsetscrreg()
137 int scrollok(WINDOW *win, bool bf) in scrollok()
H A Daddch.c113 int waddch(WINDOW *win, const chtype ch) in waddch()
292 int mvwaddch(WINDOW *win, int y, int x, const chtype ch) in mvwaddch()
309 int wechochar(WINDOW *win, const chtype ch) in wechochar()
319 int waddrawch(WINDOW *win, chtype ch) in waddrawch()
347 int mvwaddrawch(WINDOW *win, int y, int x, chtype ch) in mvwaddrawch()
359 int wadd_wch(WINDOW *win, const cchar_t *wch) in wadd_wch()
383 int mvwadd_wch(WINDOW *win, int y, int x, const cchar_t *wch) in mvwadd_wch()
401 int wecho_wchar(WINDOW *win, const cchar_t *wch) in wecho_wchar()
H A Dinstr.c63 int winnstr(WINDOW *win, char *str, int n) in winnstr()
105 int winstr(WINDOW *win, char *str) in winstr()
122 int mvwinstr(WINDOW *win, int y, int x, char *str) in mvwinstr()
149 int mvwinnstr(WINDOW *win, int y, int x, char *str, int n) in mvwinnstr()
160 int winnwstr(WINDOW *win, wchar_t *wstr, int n) in winnwstr()
190 int winwstr(WINDOW *win, wchar_t *wstr) in winwstr()
207 int mvwinwstr(WINDOW *win, int y, int x, wchar_t *wstr) in mvwinwstr()
234 int mvwinnwstr(WINDOW *win, int y, int x, wchar_t *wstr, int n) in mvwinnwstr()
H A Dinchstr.c59 int winchnstr(WINDOW *win, chtype *ch, int n) in winchnstr()
89 int winchstr(WINDOW *win, chtype *ch) in winchstr()
106 int mvwinchstr(WINDOW *win, int y, int x, chtype *ch) in mvwinchstr()
133 int mvwinchnstr(WINDOW *win, int y, int x, chtype *ch, int n) in mvwinchnstr()
144 int win_wchnstr(WINDOW *win, cchar_t *wch, int n) in win_wchnstr()
158 int win_wchstr(WINDOW *win, cchar_t *wch) in win_wchstr()
175 int mvwin_wchstr(WINDOW *win, int y, int x, cchar_t *wch) in mvwin_wchstr()
202 int mvwin_wchnstr(WINDOW *win, int y, int x, cchar_t *wch, int n) in mvwin_wchnstr()
H A Daddchstr.c68 int waddchnstr(WINDOW *win, const chtype *ch, int n) in waddchnstr()
127 int waddchstr(WINDOW *win, const chtype *ch) in waddchstr()
154 int mvwaddchstr(WINDOW *win, int y, int x, const chtype *ch) in mvwaddchstr()
164 int mvwaddchnstr(WINDOW *win, int y, int x, const chtype *ch, int n) in mvwaddchnstr()
175 int wadd_wchnstr(WINDOW *win, const cchar_t *wch, int n) in wadd_wchnstr()
196 int wadd_wchstr(WINDOW *win, const cchar_t *wch) in wadd_wchstr()
223 int mvwadd_wchstr(WINDOW *win, int y, int x, const cchar_t *wch) in mvwadd_wchstr()
233 int mvwadd_wchnstr(WINDOW *win, int y, int x, const cchar_t *wch, int n) in mvwadd_wchnstr()
H A Daddstr.c64 int waddnstr(WINDOW *win, const char *str, int n) in waddnstr()
107 int waddstr(WINDOW *win, const char *str) in waddstr()
135 int mvwaddstr(WINDOW *win, int y, int x, const char *str) in mvwaddstr()
145 int mvwaddnstr(WINDOW *win, int y, int x, const char *str, int n) in mvwaddnstr()
157 int waddnwstr(WINDOW *win, const wchar_t *wstr, int n) in waddnwstr()
191 int waddwstr(WINDOW *win, const wchar_t *wstr) in waddwstr()
218 int mvwaddwstr(WINDOW *win, int y, int x, const wchar_t *wstr) in mvwaddwstr()
228 int mvwaddnwstr(WINDOW *win, int y, int x, const wchar_t *wstr, int n) in mvwaddnwstr()
H A Dinsstr.c68 int winsnstr(WINDOW *win, const char *str, int n) in winsnstr()
121 int winsstr(WINDOW *win, const char *str) in winsstr()
138 int mvwinsstr(WINDOW *win, int y, int x, const char *str) in mvwinsstr()
166 int mvwinsnstr(WINDOW *win, int y, int x, const char *str, int n) in mvwinsnstr()
178 int wins_nwstr(WINDOW *win, const wchar_t *wstr, int n) in wins_nwstr()
208 int wins_wstr(WINDOW *win, const wchar_t *wstr) in wins_wstr()
225 int mvwins_wstr(WINDOW *win, int y, int x, const wchar_t *wstr) in mvwins_wstr()
252 int mvwins_nwstr(WINDOW *win, int y, int x, const wchar_t *wstr, int n) in mvwins_nwstr()
/aosp_15_r20/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DRemoteAnimationControllerTest.java117 final WindowState win = createWindow(null /* parent */, TYPE_APPLICATION_OVERLAY, in createAppOverlayWindow() local
126 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testForwardsShowBackdrop() local
159 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testRun() local
203 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testCancel() local
217 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testTimeout() local
237 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, in testTimeout_scaled() local
271 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testNotReallyStarted() local
309 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testRemovedBeforeStarted() local
325 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "win"); in testOpeningTaskWithTopFinishingActivity() local
351 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); in testChangeToSmallerSize() local
[all …]
H A DInsetsPolicyTest.java96 final WindowState win = createAppWindow(task1, WINDOWING_MODE_MULTI_WINDOW, "app"); in testControlsForDispatch_adjacentTasksVisible() local
109 final WindowState win = createWindow(null, WINDOWING_MODE_FREEFORM, in testControlsForDispatch_freeformTaskVisible() local
123 final WindowState win = createWindow(null, WINDOWING_MODE_FREEFORM, in testControlsForDispatch_fullscreenFreeformTaskVisible() local
139 final WindowState win = createWindow(null, WINDOWING_MODE_FREEFORM, in testControlsForDispatch_nonFullscreenFreeformTaskVisible() local
543 final WindowState win = addWindow(TYPE_APPLICATION, "win1"); in testExcludeImeInsets() local
585 final WindowState win = createWindow(null, TYPE_NAVIGATION_BAR, "navBar"); in addNavigationBar() local
598 final WindowState win = createWindow(null, TYPE_STATUS_BAR, "statusBar"); in addStatusBar() local
610 final WindowState win = createWindow(null, type, name); in addWindow() local
619 private InsetsSourceControl[] addWindowAndGetControlsForDispatch(WindowState win) { in addWindowAndGetControlsForDispatch()
/aosp_15_r20/external/coreboot/payloads/libpayload/curses/PDCurses/demos/
H A Dtestcurs.c110 WINDOW *win; in main() local
205 void Continue(WINDOW *win) in Continue()
223 int initTest(WINDOW **win, int argc, char *argv[]) in initTest()
250 void introTest(WINDOW *win) in introTest()
276 void scrollTest(WINDOW *win) in scrollTest()
330 void inputTest(WINDOW *win) in inputTest()
557 void outputTest(WINDOW *win) in outputTest()
811 void clipboardTest(WINDOW *win) in clipboardTest()
876 void acsTest(WINDOW *win) in acsTest()
992 void colorTest(WINDOW *win) in colorTest()
[all …]
H A Dxmas.c349 void lil(WINDOW *win) in lil()
356 void midtop(WINDOW *win) in midtop()
362 void bigtop(WINDOW *win) in bigtop()
375 void bigface(WINDOW *win, chtype noseattr) in bigface()
387 void legs1(WINDOW *win) in legs1()
395 void legs2(WINDOW *win) in legs2()
403 void legs3(WINDOW *win) in legs3()
411 void legs4(WINDOW *win) in legs4()
807 #define TSHOW(win, pause) touchwin(win); wrefresh(win); \ argument
810 #define SHOW(win, pause) mvwin(win, y_pos, x_pos); wrefresh(win); \ argument
/aosp_15_r20/hardware/libhardware/tests/hwc/
H A Dcnativewindow.c125 CNativeWindow *win = from_base(base); in cnw_set_swap_interval() local
132 CNativeWindow *win = from_base(base); in cnw_dequeue_buffer1() local
180 static void hwc_post(CNativeWindow *win, aBuffer *buf, int ffd) { in hwc_post()
231 CNativeWindow *win = from_base(base); in cnw_queue_buffer1() local
253 CNativeWindow *win = from_base(base); in cnw_cancel_buffer1() local
281 CNativeWindow *win = from_base_const(base); in cnw_query() local
314 CNativeWindow *win = from_base(base); in cnw_perform() local
374 static int hwc_init(CNativeWindow *win) { in hwc_init()
428 static aBuffer *cnw_alloc(CNativeWindow *win, unsigned format, unsigned usage) { in cnw_alloc()
461 static int cnw_init(CNativeWindow *win) { in cnw_init()
[all …]
/aosp_15_r20/external/arm-trusted-firmware/drivers/marvell/
H A Diob.c37 #define IOB_WIN_CR_OFFSET(win) (iob_base + 0x0 + (0x20 * win)) argument
41 #define IOB_WIN_SCR_OFFSET(win) (iob_base + 0x4 + (0x20 * win)) argument
47 #define IOB_WIN_ALR_OFFSET(win) (iob_base + 0x8 + (0x20 * win)) argument
48 #define IOB_WIN_AHR_OFFSET(win) (iob_base + 0xC + (0x20 * win)) argument
50 #define IOB_WIN_DIOB_CR_OFFSET(win) (iob_base + 0x10 + (0x20 * win)) argument
56 static void iob_win_check(struct addr_map_win *win, uint32_t win_num) in iob_win_check()
76 static void iob_enable_win(struct addr_map_win *win, uint32_t win_id) in iob_enable_win()
167 struct addr_map_win *win; in init_iob() local
H A Dgwin.c40 #define GWIN_CR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0x0 + \ argument
42 #define GWIN_ALR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0x8 + \ argument
44 #define GWIN_AHR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0xc + \ argument
50 static void gwin_check(struct addr_map_win *win) in gwin_check()
67 static void gwin_enable_window(int ap_index, struct addr_map_win *win, in gwin_enable_window()
110 void gwin_temp_win_insert(int ap_index, struct addr_map_win *win, int size) in gwin_temp_win_insert()
126 void gwin_temp_win_remove(int ap_index, struct addr_map_win *win, int size) in gwin_temp_win_remove()
182 struct addr_map_win *win; in init_gwin() local
H A Dio_win.c34 #define IO_WIN_ALR_OFFSET(ap, win) (MVEBU_IO_WIN_BASE(ap) + 0x0 + \ argument
36 #define IO_WIN_AHR_OFFSET(ap, win) (MVEBU_IO_WIN_BASE(ap) + 0x8 + \ argument
38 #define IO_WIN_CR_OFFSET(ap, win) (MVEBU_IO_WIN_BASE(ap) + 0xC + \ argument
44 static void io_win_check(struct addr_map_win *win) in io_win_check()
62 static void io_win_enable_window(int ap_index, struct addr_map_win *win, in io_win_enable_window()
115 void iow_temp_win_insert(int ap_index, struct addr_map_win *win, int size) in iow_temp_win_insert()
131 void iow_temp_win_remove(int ap_index, struct addr_map_win *win, int size) in iow_temp_win_remove()
230 struct addr_map_win *win; in init_io_win() local
/aosp_15_r20/external/trusty/arm-trusted-firmware/drivers/marvell/
Diob.c37 #define IOB_WIN_CR_OFFSET(win) (iob_base + 0x0 + (0x20 * win)) argument
41 #define IOB_WIN_SCR_OFFSET(win) (iob_base + 0x4 + (0x20 * win)) argument
47 #define IOB_WIN_ALR_OFFSET(win) (iob_base + 0x8 + (0x20 * win)) argument
48 #define IOB_WIN_AHR_OFFSET(win) (iob_base + 0xC + (0x20 * win)) argument
50 #define IOB_WIN_DIOB_CR_OFFSET(win) (iob_base + 0x10 + (0x20 * win)) argument
56 static void iob_win_check(struct addr_map_win *win, uint32_t win_num) in iob_win_check()
76 static void iob_enable_win(struct addr_map_win *win, uint32_t win_id) in iob_enable_win()
167 struct addr_map_win *win; in init_iob() local
Dgwin.c40 #define GWIN_CR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0x0 + \ argument
42 #define GWIN_ALR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0x8 + \ argument
44 #define GWIN_AHR_OFFSET(ap, win) (MVEBU_GWIN_BASE(ap) + 0xc + \ argument
50 static void gwin_check(struct addr_map_win *win) in gwin_check()
67 static void gwin_enable_window(int ap_index, struct addr_map_win *win, in gwin_enable_window()
110 void gwin_temp_win_insert(int ap_index, struct addr_map_win *win, int size) in gwin_temp_win_insert()
126 void gwin_temp_win_remove(int ap_index, struct addr_map_win *win, int size) in gwin_temp_win_remove()
182 struct addr_map_win *win; in init_gwin() local

12345678910>>...49