Searched refs:terminal_size (Results 1 – 14 of 14) sorted by relevance
/external/toybox/toys/pending/ |
D | more.c | 107 terminal_size(&cols, &rows); in more_main() 126 terminal_size(&cols, &rows); in more_main()
|
D | telnet.c | 307 terminal_size(&TT.win_width, &TT.win_height); in telnet_main()
|
D | stty.c | 143 terminal_size(&TT.output_cols, NULL); in out()
|
D | vi.c | 506 terminal_size(&TT.screen_width, &TT.screen_height); in vi_main()
|
/external/toybox/lib/ |
D | tty.c | 21 int terminal_size(unsigned *xx, unsigned *yy) in terminal_size() function 55 if (terminal_size(xx, yy) && (!xx || *xx) && (!yy || *yy)) return 1; in terminal_probesize()
|
D | lib.h | 300 int terminal_size(unsigned *xx, unsigned *yy);
|
/external/toybox/toys/other/ |
D | vmstat.c | 98 if (!(toys.optflags&FLAG_n) && isatty(1)) terminal_size(0, &rows); in vmstat_main()
|
D | hexedit.c | 129 terminal_size(0, &TT.height); in hexedit_main()
|
/external/python/cpython3/Lib/ |
D | shutil.py | 1107 size = os.terminal_size(fallback) 1113 return os.terminal_size((columns, lines))
|
/external/toybox/toys/posix/ |
D | ls.c | 551 terminal_size(&TT.screen_width, NULL); in ls_main()
|
D | sed.c | 418 terminal_size(&TT.xx, 0); in sed_line()
|
D | ps.c | 1291 if (!isatty(1) || !terminal_size(&TT.width, 0)) toys.optflags |= FLAG_w; in ps_main()
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 650 The value returned is a named tuple of type :class:`os.terminal_size`.
|
D | os.rst | 1375 tuple of type :class:`terminal_size`. 1389 .. class:: terminal_size
|