HomeSort by relevance Sort by last modified time
    Searched refs:fdflags (Results 1 - 7 of 7) 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
  /external/strace/
fcntl.c 38 #include "xlat/fdflags.h"
93 printflags(fdflags, tcp->u_arg[2], "FD_???");
143 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval);
  /external/libpcap/
pcap.c 1426 int fdflags; local
1468 int fdflags; local
    [all...]
  /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...]
  /bionic/libc/stdio/
stdio.cpp 233 int fdflags = fcntl(fd, F_GETFL, 0); local
234 if (fdflags < 0) return nullptr;
235 int tmp = fdflags & O_ACCMODE;
245 if ((oflags & O_APPEND) && !(fdflags & O_APPEND)) flags |= __SAPP;
  /toolchain/binutils/binutils-2.25/bfd/
opncls.c 331 int fdflags; local
337 fdflags = fcntl (fd, F_GETFL, NULL);
338 if (fdflags == -1)
349 switch (fdflags & (O_ACCMODE))
    [all...]
  /external/libmicrohttpd/src/microhttpd/
daemon.c 3542 int fdflags = fcntl (daemon->epoll_fd, F_GETFD); local
    [all...]

Completed in 332 milliseconds