Searched refs:FD_CLOEXEC (Results 1 – 5 of 5) sorted by relevance
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 106 Os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC); in testFcntlInt() local 108 assertTrue((flags & FD_CLOEXEC) != 0); in testFcntlInt() 2080 assertEquals("Expected flags to not include " + FD_CLOEXEC + ", actual value: " + flags, 2081 0, (flags & FD_CLOEXEC)); 2093 assertTrue("Expected flags to include " + FD_CLOEXEC + ", actual value: " + flags, 2094 0 != (flags & FD_CLOEXEC));
|
/libcore/ojluni/src/main/native/ |
D | UNIXProcess_md.c | 847 if (fcntl(FAIL_FILENO, F_SETFD, FD_CLOEXEC) == -1) in childProcess()
|
/libcore/luni/src/main/java/android/system/ |
D | OsConstants.java | 337 public static final int FD_CLOEXEC = placeholder(); field in OsConstants
|
/libcore/luni/src/main/native/ |
D | android_system_OsConstants.cpp | 231 initConstant(env, c, "FD_CLOEXEC", FD_CLOEXEC); in OsConstants_initConstants()
|
/libcore/api/ |
D | current.txt | 291 field public static final int FD_CLOEXEC;
|