Home
last modified time | relevance | path

Searched refs:fdflags (Results 1 – 5 of 5) sorted by relevance

/external/strace/xlat/
Dfdflags.h3 static const struct xlat fdflags[] = { variable
DMakemodule.am1 ….in xlat/fan_init_flags.in xlat/fan_mark_flags.in xlat/fcntlcmds.in xlat/fdflags.in xlat/fileflags…
2 …lags.h xlat/fan_init_flags.h xlat/fan_mark_flags.h xlat/fcntlcmds.h xlat/fdflags.h xlat/fileflags.…
73 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
/external/libpcap/
Dpcap.c1396 int fdflags; in pcap_getnonblock_fd() local
1398 fdflags = fcntl(p->fd, F_GETFL, 0); in pcap_getnonblock_fd()
1399 if (fdflags == -1) { in pcap_getnonblock_fd()
1404 if (fdflags & O_NONBLOCK) in pcap_getnonblock_fd()
1438 int fdflags; in pcap_setnonblock_fd() local
1440 fdflags = fcntl(p->fd, F_GETFL, 0); in pcap_setnonblock_fd()
1441 if (fdflags == -1) { in pcap_setnonblock_fd()
1447 fdflags |= O_NONBLOCK; in pcap_setnonblock_fd()
1449 fdflags &= ~O_NONBLOCK; in pcap_setnonblock_fd()
1450 if (fcntl(p->fd, F_SETFL, fdflags) == -1) { in pcap_setnonblock_fd()
/external/ppp/pppd/
Dtty.c446 int fdflags; in tty_check_options() local
491 fdflags = fcntl(0, F_GETFL); in tty_check_options()
492 if (fdflags != -1 && (fdflags & O_ACCMODE) == O_RDWR) in tty_check_options()
516 int fdflags; in connect_tty() local
583 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1 in connect_tty()
584 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0) in connect_tty()
/external/strace/
Ddesc.c158 printflags(fdflags, tcp->u_arg[2], "FD_???"); in sys_fcntl()
213 tcp->auxstr = sprintflags("flags ", fdflags, tcp->u_rval); in sys_fcntl()