HomeSort by: relevance | last modified time | path
    Searched refs:FIONREAD (Results 1 - 25 of 68) sorted by relevancy

1 2 3

  /src/external/ibm-public/postfix/dist/src/util/
peekfd.c 71 #ifdef FIONREAD
82 if (ioctl(fd, FIONREAD, (char *) &count) < 0) {
89 return (ioctl(fd, FIONREAD, (char *) &count) < 0 ? -1 : count);
  /src/sys/sys/
filio.h 50 #define FIONREAD _IOR('f', 127, int) /* get # bytes to read */
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/sys/
filio.d 30 enum uint FIONREAD = _IOR!(int)('f', 127); // get # bytes to read
43 enum uint FIONREAD = _IOR!(int)('f', 127); // get # bytes to read
ioctl.d 200 enum FIONREAD = 0x541B;
201 enum TIOCINQ = FIONREAD;
  /src/external/gpl3/gdb.old/dist/readline/readline/
input.c 239 #if defined (FIONREAD)
240 result = ioctl (tty, FIONREAD, &chars_avail);
325 descriptor? Only works if the system has select(2) or FIONREAD.
337 #if !defined (HAVE_SELECT) && defined(FIONREAD)
356 #if defined (FIONREAD)
357 if (ioctl (tty, FIONREAD, &chars_avail) == 0)
378 #if defined (FIONREAD)
381 result = ioctl (fd, FIONREAD, &chars_avail);
  /src/usr.bin/tip/aculib/
hayes.c 251 (void)ioctl(FD, FIONREAD, &len);
261 (void)ioctl(FD, FIONREAD, &len);
283 (void)ioctl(FD, FIONREAD, &len);
biz31.c 217 #ifdef FIONREAD
220 # define IOCTL FIONREAD
courier.c 268 (void)ioctl(FD, FIONREAD, &len);
322 if (ioctl(FD, FIONREAD, &n) < 0)
t3000.c 276 (void)ioctl(FD, FIONREAD, &len);
332 if (ioctl(FD, FIONREAD, &n) < 0)
ventel.c 202 * the ventel in sync. If you don't have FIONREAD
232 if (ioctl(fd, FIONREAD, &nread) < 0) {
  /src/games/larn/
tok.c 75 ioctl(0, FIONREAD, &ic);
120 ioctl(0, FIONREAD, &ic);
  /src/usr.bin/talk/
io.c 101 ioctl(0, FIONREAD, (void *) &nb);
  /src/external/gpl3/gdb/dist/readline/readline/
input.c 294 #if defined (FIONREAD)
295 result = ioctl (tty, FIONREAD, &chars_avail);
380 descriptor? Only works if the system has select(2) or FIONREAD.
392 #if !defined (HAVE_SELECT) && defined (FIONREAD)
415 #if defined (FIONREAD)
416 if (ioctl (tty, FIONREAD, &chars_avail) == 0)
437 #if defined (FIONREAD)
440 result = ioctl (fd, FIONREAD, &chars_avail);
  /src/games/warp/
term.h 105 # ifdef FIONREAD
109 (ioctl(0, FIONREAD, &iocount),(int)iocount))
113 # else /* FIONREAD */
132 # endif /* FIONREAD */
143 # ifdef FIONREAD /* must have FIONREAD or O_NDELAY for input_pending() */
146 # define input_pending() (ioctl(0, FIONREAD, &iocount), \
152 # else /* FIONREAD */
174 # endif /* FIONREAD */
warp.h 158 #ifdef FIONREAD
  /src/external/bsd/file/dist/src/
seccomp.c 198 #ifdef FIONREAD
200 ALLOW_IOCTL_RULE(FIONREAD);
compress.c 416 #if defined(FIONREAD) && !defined(__MINGW32__)
424 #if defined(FIONREAD) && !defined(__MINGW32__)
425 if (canbepipe && (ioctl(fd, FIONREAD, &t) == -1 || t == 0)) {
450 (void)ioctl(fd, FIONREAD, &t);
  /src/libexec/lfs_cleanerd/
cleansrv.c 75 ioctl(control_socket, FIONREAD, &c);
  /src/usr.bin/tftp/
tftpsubs.c 273 (void) ioctl(f, FIONREAD, &i);
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/io/
basic_file_stdio.cc 42 // Pick up FIONREAD on Solaris 2
48 // Pick up FIONREAD on Solaris 2.5.
403 #ifdef FIONREAD
406 int __r = ioctl(this->fd(), FIONREAD, &__num);
  /src/lib/libedit/
read.c 494 #ifdef FIONREAD
498 (void) ioctl(el->el_infd, FIONREAD, &chrs);
507 #endif /* FIONREAD */
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/io/
basic_file_stdio.cc 43 // Pick up FIONREAD on Solaris 2
49 // Pick up FIONREAD on Solaris 2.5.
437 #ifdef FIONREAD
440 int __r = ioctl(this->fd(), FIONREAD, &__num);
  /src/sys/kern/
sys_socket.c 160 case FIONREAD:
  /src/external/bsd/tmux/dist/
compat.h 88 #if !defined(FIONREAD) && defined(__sun)
  /src/bin/csh/
file.c 177 /* FIONREAD works only in noncanonical mode. */
196 if (ioctl(SHOUT, FIONREAD, (ioctl_t) &nbuf) ||
230 * FIONREAD in canonical mode does not return correct byte count
235 (void)ioctl(SHOUT, FIONREAD, (ioctl_t) &i);

Completed in 33 milliseconds

1 2 3