Home
last modified time | relevance | path

Searched refs:ttywidth (Results 1 – 8 of 8) sorted by relevance

/freebsd-9-stable/sbin/camcontrol/
Dprogress.c76 prog->ttywidth = winsize.ws_col; in progress_init()
78 prog->ttywidth = DEFAULT_TTYWIDTH; in progress_init()
143 barlength = MIN(sizeof(buf) - 1, (unsigned)prog->ttywidth) - BAROVERHEAD - strlen(prog->prefix); in progress_draw()
Dprogress.h51 int32_t ttywidth; /* width of tty in columns */ member
/freebsd-9-stable/usr.bin/tabs/
Dtabs.c75 static int ttywidth(void);
150 cols = ttywidth(); in main()
224 ttywidth(void) in ttywidth() function
/freebsd-9-stable/usr.bin/who/
Dwho.c54 static int ttywidth(void);
233 ncols = ttywidth(); in quick()
284 ttywidth(void) in ttywidth() function
/freebsd-9-stable/usr.bin/w/
Dw.c93 int ttywidth; /* width of tty */ variable
312 ttywidth = 79; in main()
314 ttywidth = ws.ws_col - 1; in main()
315 argwidth = ttywidth - WUSED; in main()
/freebsd-9-stable/contrib/tnftp/src/
Dprogressbar.h50 GLOBAL int ttywidth; /* width of tty */ variable
Dutil.c903 columns = ttywidth / width; in list_vertical()
938 ttywidth = winsize.ws_col; in setttywidth()
940 ttywidth = 80; in setttywidth()
Dprogressbar.c233 barlength = MIN((int)(sizeof(buf) - 1), ttywidth) - BAROVERHEAD;