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

  /external/strace/xlat/
fdflags.h 1 /* Generated by ./xlat/gen.sh from ./xlat/fdflags.in; do not edit. */
3 static const struct xlat fdflags[] = { variable in typeref:struct:xlat
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fdopen.c 46 int flags, oflags, fdflags, tmp; local
58 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0)
60 tmp = fdflags & O_ACCMODE;
75 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
  /external/libpcap/
pcap.c 1396 int fdflags; local
1438 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...]
  /external/strace/
desc.c 42 #include "xlat/fdflags.h"
157 printflags(fdflags, tcp->u_arg[2], "FD_???");
212 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval);

Completed in 1335 milliseconds