Home
last modified time | relevance | path

Searched refs:O_TMPFILE (Results 1 – 7 of 7) sorted by relevance

/bionic/libc/bionic/
Dopen.cpp47 return ((flags & O_CREAT) == O_CREAT) || ((flags & O_TMPFILE) == O_TMPFILE); in needs_mode()
/bionic/libc/include/bits/fortify/
Dfcntl.h46 #define __open_modes_useful(flags) (((flags) & O_CREAT) || ((flags) & O_TMPFILE) == O_TMPFILE)
/bionic/tests/
Dfortify_filecheck_diagnostics_test.cpp198 open("/dev/null", O_TMPFILE); in test_open()
204 open("/dev/null", O_TMPFILE, 0, 0); in test_open()
Dfcntl_test.cpp309 int fd = open(dir.path, O_TMPFILE | O_RDWR, perms); in TEST()
335 fd = open(dir.path, O_TMPFILE | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR); in TEST()
Dfortify_test.cpp1017 int flags = O_TMPFILE; // Fool the compiler. in TEST_F()
Ddlext_test.cpp904 open(GetTestlibRoot().c_str(), O_TMPFILE | O_CLOEXEC | O_RDWR | O_EXCL, 0)); in TEST()
/bionic/libc/kernel/uapi/asm-generic/
Dfcntl.h78 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY) macro