Searched refs:fdflags (Results 1 – 6 of 6) sorted by relevance
/external/strace/xlat/ |
D | fdflags.h | 11 # error static const struct xlat fdflags in mpers mode 16 const struct xlat fdflags[] = { variable
|
D | Makemodule.am | 1 ….in xlat/fan_init_flags.in xlat/fan_mark_flags.in xlat/fcntlcmds.in xlat/fdflags.in xlat/fib_rule_… 2 …lags.h xlat/fan_init_flags.h xlat/fan_mark_flags.h xlat/fcntlcmds.h xlat/fdflags.h xlat/fib_rule_a… 245 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
|
/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.in | 900 xlat/fan_mark_flags.in xlat/fcntlcmds.in xlat/fdflags.in \ 1141 xlat/fdflags.h xlat/fib_rule_actions.h xlat/fib_rule_flags.h \ 7646 $(top_srcdir)/xlat/fdflags.h: $(top_srcdir)/xlat/fdflags.in $(top_srcdir)/xlat/gen.sh
|
/external/libpcap/ |
D | pcap.c | 3175 int fdflags; 3177 fdflags = fcntl(p->fd, F_GETFL, 0); 3178 if (fdflags == -1) { 3183 if (fdflags & O_NONBLOCK) 3221 int fdflags; 3223 fdflags = fcntl(p->fd, F_GETFL, 0); 3224 if (fdflags == -1) { 3230 fdflags |= O_NONBLOCK; 3232 fdflags &= ~O_NONBLOCK; 3233 if (fcntl(p->fd, F_SETFL, fdflags) == -1) {
|