Searched refs:winsize (Results 1 - 25 of 143) sorted by relevance

123456

/freebsd-current/sys/sys/
H A D_winsize.h39 struct winsize { struct
H A Dttycom.h86 #define TIOCSWINSZ _IOW('t', 103, struct winsize) /* set window size */
87 #define TIOCGWINSZ _IOR('t', 104, struct winsize) /* get window size */
H A Dterminal.h201 struct winsize tm_winsize;
215 const struct winsize *size, int blank, const term_attr_t *attr);
216 void terminal_set_winsize(struct terminal *tm, const struct winsize *size);
H A Dtty.h111 struct winsize t_winsize; /* (t) Window size. */
207 void tty_set_winsize(struct tty *tp, const struct winsize *wsz);
/freebsd-current/contrib/nvi/ex/
H A Dscript.h17 struct winsize sh_win; /* Window size. */
/freebsd-current/bin/stty/
H A Dextern.h34 void gprint(struct termios *, struct winsize *, int);
39 void print(struct termios *, struct winsize *, int, enum FMT);
H A Dstty.h41 struct winsize win; /* window info */
H A Dgfmt.c52 gprint(struct termios *tp, struct winsize *wp __unused, int ldisc __unused)
/freebsd-current/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.cpp26 winsize *ws = va_arg(vl, winsize *);
H A DPlatform.h23 struct winsize { struct
/freebsd-current/include/
H A Dtermios.h96 int tcgetwinsize(int, struct winsize *);
97 int tcsetwinsize(int, const struct winsize *);
/freebsd-current/lib/libutil/
H A Dpty.c48 struct winsize *winp)
88 forkpty(int *amaster, char *name, struct termios *termp, struct winsize *winp)
H A Dlibutil.h86 struct winsize;
98 struct termios *_termp, struct winsize *_winp);
120 struct termios *_termp, struct winsize *_winp);
/freebsd-current/sbin/camcontrol/
H A Dprogress.c67 struct winsize winsize; local
74 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
75 winsize.ws_col != 0) {
76 prog->ttywidth = winsize.ws_col;
/freebsd-current/contrib/dialog/
H A Dttysize.c43 /* On SCO, they neglected to define struct winsize in termios.h -- it's only
52 * Solaris, IRIX) define TIOCGWINSZ and struct winsize.
61 # define STRUCT_WINSIZE struct winsize
/freebsd-current/crypto/heimdal/appl/telnet/telnetd/
H A Dtermstat.c96 struct winsize ws;
/freebsd-current/crypto/openssh/
H A Dprogressmeter.c291 struct winsize winsize; local
293 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
294 winsize.ws_col != 0) {
295 if (winsize.ws_col > MAX_WINSIZE)
298 win_size = winsize.ws_col;
/freebsd-current/contrib/wpa/src/tls/
H A Dlibtommath.c1887 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
1893 winsize = 2;
1895 winsize = 3;
1897 winsize = 4;
1899 winsize = 5;
1901 winsize = 6;
1903 winsize = 7;
1905 winsize = 8;
1909 if (winsize > 5) {
1910 winsize
2964 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
[all...]
/freebsd-current/crypto/heimdal/lib/roken/
H A Dget_window_size.c67 struct winsize ws;
/freebsd-current/lib/libdpv/
H A Ddialog_util.c66 static struct winsize *maxsize = NULL;
89 if ((maxsize = malloc(sizeof(struct winsize))) == NULL)
91 memset((void *)maxsize, '\0', sizeof(struct winsize));
125 if ((maxsize = malloc(sizeof(struct winsize))) == NULL)
127 memset((void *)maxsize, '\0', sizeof(struct winsize));
/freebsd-current/usr.sbin/ppp/
H A Ddeflate.c46 int winsize; member in struct:deflate_state
447 o->data[0] = ((cfg->deflate.out.winsize - 8) << 4) + 8;
476 if (cfg->deflate.in.winsize == 0) {
480 } else if (want != cfg->deflate.in.winsize) {
481 o->data[0] = ((cfg->deflate.in.winsize - 8) << 4) + 8;
495 state->winsize = (o->data[0] >> 4) + 8;
500 if (inflateInit2(&state->cx, -state->winsize) == Z_OK)
518 state->winsize = (o->data[0] >> 4) + 8;
524 -state->winsize, 8, Z_DEFAULT_STRATEGY) == Z_OK)
H A Dccp.h71 int winsize; member in struct:ccp_config::__anon6714::__anon6715
/freebsd-current/usr.bin/resizewin/
H A Dresizewin.c62 struct winsize w;
/freebsd-current/contrib/netbsd-tests/lib/libc/ttyio/
H A Dt_ttyio.c52 int openpty(int *, int *, char *, struct termios *, struct winsize *);
/freebsd-current/sys/dev/vt/
H A Dvt_cpulogos.c155 struct winsize wsz;
212 struct winsize wsz;

Completed in 520 milliseconds

123456