Home
last modified time | relevance | path

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

/external/strace/xlat/
Dfdflags.h11 # error static const struct xlat fdflags in mpers mode
16 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/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/
Dtty.c451 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/
Dfcntl.c95 printflags(fdflags, tcp->u_arg[2], "FD_???"); in print_fcntl()
145 tcp->auxstr = sprintflags("flags ", fdflags, in print_fcntl()
DMakefile.in900 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/
Dpcap.c3175 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) {