HomeSort by relevance Sort by last modified time
    Searched defs:fdflags (Results 1 - 6 of 6) sorted by null

  /external/strace/xlat/
fdflags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/fdflags.in; do not edit. */
5 # error static const struct xlat fdflags in mpers mode
10 const struct xlat fdflags[] = { variable in typeref:struct:xlat
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fdopen.c 68 int flags, oflags, fdflags, tmp; local
76 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0)
78 tmp = fdflags & O_ACCMODE;
103 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
  /external/ppp/pppd/
tty.c 451 int fdflags; local
496 fdflags = fcntl(0, F_GETFL);
497 if (fdflags != -1 && (fdflags & O_ACCMODE) == O_RDWR)
521 int fdflags; local
591 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1
592 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0)
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
opncls.c 333 int fdflags; local
339 fdflags = fcntl (fd, F_GETFL, NULL);
340 if (fdflags == -1)
351 switch (fdflags & (O_ACCMODE))
    [all...]
  /external/libpcap/
pcap.c 1460 int fdflags; local
1502 int fdflags; local
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 3542 int fdflags = fcntl (daemon->epoll_fd, F_GETFD); local
    [all...]

Completed in 679 milliseconds