Searched refs:termwidth (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/bin/ls/
H A Dextern.h77 extern int termwidth;
H A Dls.c102 int termwidth = 80; /* default terminal width */ variable
235 termwidth = 80;
237 termwidth = strtonum(p, 0, INT_MAX, &errstr);
240 termwidth = win.ws_col;
247 termwidth = strtonum(p, 0, INT_MAX, &errstr);
251 termwidth = 80;
H A Dprint.c278 (p->fts_link ? 2 : 0) >= (unsigned)termwidth) {
343 if (termwidth < 2 * colwidth) {
347 numcols = termwidth / colwidth;
/freebsd-current/usr.bin/column/
H A Dcolumn.c56 static int termwidth = 80; /* default terminal width */ variable
79 termwidth = atoi(p);
81 termwidth = win.ws_col;
87 termwidth = atoi(optarg);
130 else if (maxlength >= termwidth)
145 numcols = termwidth / maxlength;
173 numcols = termwidth / maxlength;
/freebsd-current/usr.bin/sed/
H A Dprocess.c589 static int termwidth = -1; local
595 termwidth = 60;
596 if (termwidth == -1) {
598 termwidth = atoi(p);
601 termwidth = win.ws_col;
603 termwidth = 60;
605 if (termwidth <= 0)
606 termwidth = 1;
620 if (col + 1 >= termwidth)
627 if (col + width >= termwidth) {
[all...]
/freebsd-current/bin/ps/
H A Dextern.h41 extern int showthreads, sumrusage, termwidth;
H A Dps.c91 int termwidth; /* Width of the screen (0 == infinity). */ variable
199 termwidth = atoi(cols);
204 termwidth = UNLIMITED;
206 termwidth = ws.ws_col - 1;
418 termwidth = UNLIMITED;
419 else if (termwidth < 131 && termwidth != UNLIMITED)
420 termwidth = 131;
688 termwidth = UNLIMITED;
703 termwidth !
[all...]
H A Dkeyword.c244 if (termwidth && (i += len + 1) > termwidth) {
/freebsd-current/usr.bin/ministat/
H A Dministat.c566 int termwidth = 74; local
573 termwidth = atoi(p);
576 termwidth = wsz.ws_col - 2;
617 termwidth = strtol(optarg, &p, 10);
620 if (termwidth < 0)
675 SetupPlot(termwidth, flag_s, nds);

Completed in 116 milliseconds