HomeSort by relevance Sort by last modified time
    Searched full:fdflags (Results 1 - 25 of 57) sorted by null

1 2 3

  /bionic/libc/stdio/
fdopen.c 45 int flags, oflags, fdflags, tmp; local
51 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0)
53 tmp = fdflags & O_ACCMODE;
67 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
  /frameworks/base/core/jni/
com_android_internal_os_ZygoteInit.cpp 172 int fdFlags;
180 fdFlags = fcntl(fd, F_GETFD);
182 if (fdFlags < 0) {
188 fdFlags |= FD_CLOEXEC;
190 fdFlags &= ~FD_CLOEXEC;
193 err = fcntl(fd, F_SETFD, fdFlags);
  /external/libpcap/
pcap.c 596 int fdflags; local
598 fdflags = fcntl(p->fd, F_GETFL, 0);
599 if (fdflags == -1) {
604 if (fdflags & O_NONBLOCK)
627 int fdflags; local
629 fdflags = fcntl(p->fd, F_GETFL, 0);
630 if (fdflags == -1) {
636 fdflags |= O_NONBLOCK;
638 fdflags &= ~O_NONBLOCK;
639 if (fcntl(p->fd, F_SETFL, fdflags) == -1)
    [all...]
  /external/ppp/pppd/
tty.c 446 int fdflags; local
491 fdflags = fcntl(0, F_GETFL);
492 if (fdflags != -1 && (fdflags & O_ACCMODE) == O_RDWR)
516 int fdflags; local
583 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1
584 || fcntl(ttyfd, F_SETFL, fdflags & ~O_NONBLOCK) < 0)
    [all...]
  /external/strace/
desc.c 154 static const struct xlat fdflags[] = { variable in typeref:struct:xlat
281 printflags(fdflags, tcp->u_arg[2], "FD_???");
325 tcp->auxstr = sprintflags(fdflags, tcp->u_rval);
  /ndk/build/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-5/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-5/arch-x86/usr/lib/
libc.so 
  /ndk/build/platforms/android-8/arch-arm/usr/lib/
libc.so 
  /ndk/build/platforms/android-8/arch-x86/usr/lib/
libc.so 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/arm-eabi/bin/
ar 
nm 
ranlib 
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/
arm-eabi-addr2line 
arm-eabi-ar 
arm-eabi-c++filt 
arm-eabi-nm 
arm-eabi-ranlib 
arm-eabi-run 
arm-eabi-size 
arm-eabi-strings 
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/bin/
i686-unknown-linux-gnu-addr2line 
i686-unknown-linux-gnu-ar 
i686-unknown-linux-gnu-c++filt 

Completed in 172 milliseconds

1 2 3