Searched defs:fdflags (Results 1 - 3 of 3) sorted by relevance

/external/strace/xlat/
H A Dfdflags.h1 /* Generated by ./xlat/gen.sh from ./xlat/fdflags.in; do not edit. */
3 static const struct xlat fdflags[] = { variable in typeref:struct:xlat
/external/ppp/pppd/
H A Dtty.c451 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)
/external/libpcap/
H A Dpcap.c1396 int fdflags; local
1398 fdflags = fcntl(p->fd, F_GETFL, 0);
1399 if (fdflags == -1) {
1404 if (fdflags & O_NONBLOCK)
1438 int fdflags; local
1440 fdflags = fcntl(p->fd, F_GETFL, 0);
1441 if (fdflags == -1) {
1447 fdflags |= O_NONBLOCK;
1449 fdflags &= ~O_NONBLOCK;
1450 if (fcntl(p->fd, F_SETFL, fdflags)
[all...]

Completed in 191 milliseconds