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

1234

/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_s_mp_exptmod.c29 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
35 winsize = 2;
37 winsize = 3;
39 winsize = 4;
41 winsize = 5;
43 winsize = 6;
45 winsize = 7;
47 winsize = 8;
51 if (winsize > 5) {
52 winsize
[all...]
H A Dbn_mp_exptmod_fast.c38 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
49 winsize = 2;
51 winsize = 3;
53 winsize = 4;
55 winsize = 5;
57 winsize = 6;
59 winsize = 7;
61 winsize = 8;
65 if (winsize > 5) {
66 winsize
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/ex/
H A Dscript.h22 struct winsize sh_win; /* Window size. */
/netbsd-6-1-5-RELEASE/usr.bin/window/
H A Dwwtty.c124 struct winsize winsize; local
126 if (ioctl(d, TIOCGWINSZ, (char *)&winsize) < 0) {
130 if (winsize.ws_row != 0)
131 *r = winsize.ws_row;
132 if (winsize.ws_col != 0)
133 *c = winsize.ws_col;
140 struct winsize winsize; local
142 winsize
[all...]
/netbsd-6-1-5-RELEASE/bin/stty/
H A Dextern.h46 void print(struct termios *, struct winsize *, int, enum FMT);
H A Dstty.h48 struct winsize win; /* window info */
/netbsd-6-1-5-RELEASE/sbin/fsck/
H A Dprogress.c157 struct winsize winsize; local
160 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1 &&
161 winsize.ws_col != 0)
162 ttywidth = winsize.ws_col;
/netbsd-6-1-5-RELEASE/usr.sbin/lpr/lpd/
H A Dextern.h50 struct winsize win; /* window info */
/netbsd-6-1-5-RELEASE/include/
H A Dutil.h65 struct winsize;
69 pid_t forkpty(int *, char *, struct termios *, struct winsize *);
90 struct winsize *);
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dttycom.h53 struct winsize { struct
128 #define TIOCGWINSZ _IOR('t', 104, struct winsize) /* get window size */
129 #define TIOCSWINSZ _IOW('t', 103, struct winsize) /* set window size */
/netbsd-6-1-5-RELEASE/usr.bin/rlogin/
H A Drlogin.c97 struct winsize { struct
104 static struct winsize winsize; variable in typeref:struct:winsize
126 static int get_window_size(int, struct winsize *);
240 (void)get_window_size(0, &winsize);
534 struct winsize ws;
537 memcmp(&ws, &winsize, sizeof(ws))) {
538 winsize = ws;
549 struct winsize *wp;
550 char obuf[4 + sizeof (struct winsize)];
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dprogressmeter.c311 struct winsize winsize; local
313 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &winsize) != -1 &&
314 winsize.ws_col != 0) {
315 if (winsize.ws_col > MAX_WINSIZE)
318 win_size = winsize.ws_col;
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/tls/
H A Dlibtommath.c1872 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
1878 winsize = 2;
1880 winsize = 3;
1882 winsize = 4;
1884 winsize = 5;
1886 winsize = 6;
1888 winsize = 7;
1890 winsize = 8;
1894 if (winsize > 5) {
1895 winsize
2944 int err, bitbuf, bitcpy, bitcnt, mode, digidx, x, y, winsize; local
[all...]
/netbsd-6-1-5-RELEASE/lib/libutil/
H A Dpty.c64 struct winsize *winp)
139 forkpty(int *amaster, char *name, struct termios *term, struct winsize *winp)
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/roken/
H A Dget_window_size.c70 struct winsize ws;
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/compat/
H A Dforkpty-aix.c30 forkpty(int *master, unused char *name, struct termios *tio, struct winsize *ws)
H A Dforkpty-hpux.c30 forkpty(int *master, char *name, struct termios *tio, struct winsize *ws)
H A Dforkpty-sunos.c30 forkpty(int *master, char *name, struct termios *tio, struct winsize *ws)
/netbsd-6-1-5-RELEASE/sys/rump/librump/rumpvfs/
H A Drumpblk.c538 int i, winsize; local
567 winsize = memwinsize;
568 win = getwindow(rblk, off + i*memwinsize, &winsize,
751 int winsize, iodone; local
755 iodone += winsize, off += winsize) {
756 winsize = bp->b_bcount - iodone;
757 win = getwindow(rblk, off, &winsize, &error);
770 memcpy(bufaddr, ioaddr, winsize);
772 memcpy(ioaddr, bufaddr, winsize);
[all...]
/netbsd-6-1-5-RELEASE/sbin/mount_portal/
H A Dpuffs_portal.c603 size_t xfersize, winsize, boff; local
648 winsize = xfersize;
650 &win, &winsize);
652 assert(winsize > 0);
654 memcpy(buf + boff, win, winsize);
655 xfersize -= winsize;
656 boff += winsize;
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcompat.h202 pid_t forkpty(int *, char *, struct termios *, struct winsize *);
/netbsd-6-1-5-RELEASE/tests/lib/libc/ttyio/
H A Dt_ttyio.c52 int openpty(int *, int *, char *, struct termios *, struct winsize *);
/netbsd-6-1-5-RELEASE/libexec/telnetd/
H A Dtermstat.c512 struct winsize ws;
594 struct winsize ws;
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dtstp.c140 struct winsize win;
257 struct winsize win;
/netbsd-6-1-5-RELEASE/bin/kill/
H A Dkill.c220 struct winsize win;

Completed in 306 milliseconds

1234