Searched refs:FD_CLOEXEC (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 81 Os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC); in testFcntlInt() local 83 assertTrue((flags & FD_CLOEXEC) != 0); in testFcntlInt() 1565 assertTrue("Expected flags to not include " + FD_CLOEXEC + ", actual value: " + flags, in testMemfdCreateFlags() 1566 0 == (flags & FD_CLOEXEC)); in testMemfdCreateFlags() 1578 assertTrue("Expected flags to include " + FD_CLOEXEC + ", actual value: " + flags, in testMemfdCreateFlags() 1579 0 != (flags & FD_CLOEXEC)); in testMemfdCreateFlags()
|
/libcore/ojluni/src/main/native/ |
D | UNIXProcess_md.c | 780 if (fcntl(FAIL_FILENO, F_SETFD, FD_CLOEXEC) == -1) in childProcess()
|
/libcore/luni/src/main/java/android/system/ |
D | OsConstants.java | 277 public static final int FD_CLOEXEC = placeholder(); field in OsConstants
|
/libcore/luni/src/main/native/ |
D | android_system_OsConstants.cpp | 226 initConstant(env, c, "FD_CLOEXEC", FD_CLOEXEC); in OsConstants_initConstants()
|