Home
last modified time | relevance | path

Searched refs:FD_CLOEXEC (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java81 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/
DUNIXProcess_md.c780 if (fcntl(FAIL_FILENO, F_SETFD, FD_CLOEXEC) == -1) in childProcess()
/libcore/luni/src/main/java/android/system/
DOsConstants.java277 public static final int FD_CLOEXEC = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp226 initConstant(env, c, "FD_CLOEXEC", FD_CLOEXEC); in OsConstants_initConstants()