Searched refs:fdflags (Results 1 – 8 of 8) sorted by relevance
/external/strace/xlat/ |
D | fdflags.h | 5 # error static const struct xlat fdflags in mpers mode 10 const struct xlat fdflags[] = { variable
|
D | Makemodule.am | 1 …ags.in xlat/fan_mark_flags.in xlat/fcntl64cmds.in xlat/fcntlcmds.in xlat/fdflags.in xlat/fiemap_ex… 2 …t_flags.h xlat/fan_mark_flags.h xlat/fcntl64cmds.h xlat/fcntlcmds.h xlat/fdflags.h xlat/fiemap_ext… 201 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
|
/external/libpcap/ |
D | pcap.c | 1426 int fdflags; in pcap_getnonblock_fd() local 1428 fdflags = fcntl(p->fd, F_GETFL, 0); in pcap_getnonblock_fd() 1429 if (fdflags == -1) { in pcap_getnonblock_fd() 1434 if (fdflags & O_NONBLOCK) in pcap_getnonblock_fd() 1468 int fdflags; in pcap_setnonblock_fd() local 1470 fdflags = fcntl(p->fd, F_GETFL, 0); in pcap_setnonblock_fd() 1471 if (fdflags == -1) { in pcap_setnonblock_fd() 1477 fdflags |= O_NONBLOCK; in pcap_setnonblock_fd() 1479 fdflags &= ~O_NONBLOCK; in pcap_setnonblock_fd() 1480 if (fcntl(p->fd, F_SETFL, fdflags) == -1) { in pcap_setnonblock_fd()
|
/external/ppp/pppd/ |
D | tty.c | 451 int fdflags; in tty_check_options() local 496 fdflags = fcntl(0, F_GETFL); in tty_check_options() 497 if (fdflags != -1 && (fdflags & O_ACCMODE) == O_RDWR) in tty_check_options() 521 int fdflags; in connect_tty() local 591 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1 in connect_tty() 592 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0) in connect_tty()
|
/external/strace/ |
D | fcntl.c | 95 printflags(fdflags, tcp->u_arg[2], "FD_???"); in print_fcntl() 145 tcp->auxstr = sprintflags("flags ", fdflags, in print_fcntl()
|
D | Makefile | 761 xlat/fdflags.in xlat/fiemap_extent_flags.in \ 900 xlat/fdflags.h xlat/fiemap_extent_flags.h xlat/fiemap_flags.h \ 5987 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
|
D | Makefile.in | 761 xlat/fdflags.in xlat/fiemap_extent_flags.in \ 900 xlat/fdflags.h xlat/fiemap_extent_flags.h xlat/fiemap_flags.h \ 5987 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
|
/external/libmicrohttpd/src/microhttpd/ |
D | daemon.c | 3542 int fdflags = fcntl (daemon->epoll_fd, F_GETFD); in setup_epoll_to_listen() local 3543 if (0 > fdflags || 0 > fcntl (daemon->epoll_fd, F_SETFD, fdflags | FD_CLOEXEC)) in setup_epoll_to_listen()
|