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

/freebsd-10.1-release/bin/ls/
H A Dextern.h66 extern int termwidth;
H A Dls.c103 int termwidth = 80; /* default terminal width */ variable
170 termwidth = 80;
172 termwidth = atoi(p);
175 termwidth = win.ws_col;
182 termwidth = atoi(p);
H A Dprint.c210 (p->fts_link ? 2 : 0) >= (unsigned)termwidth) {
275 if (termwidth < 2 * colwidth) {
279 numcols = termwidth / colwidth;
/freebsd-10.1-release/usr.bin/column/
H A Dcolumn.c69 static int termwidth = 80; /* default terminal width */ variable
92 termwidth = atoi(p);
94 termwidth = win.ws_col;
100 termwidth = atoi(optarg);
143 else if (maxlength >= termwidth)
158 numcols = termwidth / maxlength;
186 numcols = termwidth / maxlength;
/freebsd-10.1-release/usr.bin/sed/
H A Dprocess.c574 static int termwidth = -1; local
580 termwidth = 60;
581 if (termwidth == -1) {
583 termwidth = atoi(p);
586 termwidth = win.ws_col;
588 termwidth = 60;
590 if (termwidth <= 0)
591 termwidth = 1;
605 if (col + 1 >= termwidth)
612 if (col + width >= termwidth) {
[all...]
/freebsd-10.1-release/bin/ps/
H A Dextern.h42 extern int showthreads, sumrusage, termwidth;
H A Dps.c103 int termwidth; /* Width of the screen (0 == infinity). */ variable
193 termwidth = atoi(cols);
198 termwidth = 79;
200 termwidth = ws.ws_col - 1;
393 termwidth = UNLIMITED;
394 else if (termwidth < 131)
395 termwidth = 131;
649 termwidth != UNLIMITED && ks->ks_str != NULL) {
650 left = termwidth - linelen;
1210 s = fmt_argv((*fn)(kd, ki->ki_p, termwidth), com
[all...]
H A Dkeyword.c189 if (termwidth && (i += len + 1) > termwidth) {
/freebsd-10.1-release/usr.bin/ministat/
H A Dministat.c541 int termwidth = 74; local
548 termwidth = atoi(p);
551 termwidth = wsz.ws_col - 2;
589 termwidth = strtol(optarg, &p, 10);
592 if (termwidth < 0)
619 SetupPlot(termwidth, flag_s, nds);

Completed in 153 milliseconds