/external/strace/tests/ |
D | openat.c | 38 #ifdef O_TMPFILE 40 # define STRACE_O_TMPFILE (O_TMPFILE & ~O_DIRECTORY) 109 # ifdef O_TMPFILE in main() 110 { ARG_STR(O_TMPFILE) }, in main()
|
D | open.c | 60 # ifdef O_TMPFILE in main() 61 fd = syscall(__NR_open, sample, O_WRONLY|O_TMPFILE, 0600); in main()
|
/external/strace/tests-mx32/ |
D | openat.c | 38 #ifdef O_TMPFILE 40 # define STRACE_O_TMPFILE (O_TMPFILE & ~O_DIRECTORY) 109 # ifdef O_TMPFILE in main() 110 { ARG_STR(O_TMPFILE) }, in main()
|
D | open.c | 60 # ifdef O_TMPFILE in main() 61 fd = syscall(__NR_open, sample, O_WRONLY|O_TMPFILE, 0600); in main()
|
/external/strace/tests-m32/ |
D | openat.c | 38 #ifdef O_TMPFILE 40 # define STRACE_O_TMPFILE (O_TMPFILE & ~O_DIRECTORY) 109 # ifdef O_TMPFILE in main() 110 { ARG_STR(O_TMPFILE) }, in main()
|
D | open.c | 60 # ifdef O_TMPFILE in main() 61 fd = syscall(__NR_open, sample, O_WRONLY|O_TMPFILE, 0600); in main()
|
/external/ltp/testcases/kernel/syscalls/open/ |
D | open14.c | 52 int fd = open(".", O_TMPFILE | O_RDWR, 0600); in setup() 78 fd = SAFE_OPEN(cleanup, ".", O_TMPFILE | O_RDWR, 0600); in test01() 140 fd[i] = SAFE_OPEN(cleanup, ".", O_TMPFILE | O_RDWR, 0600); in test02() 196 fd[i] = SAFE_OPEN(cleanup, ".", O_TMPFILE | O_RDWR, perm); in test03()
|
/external/strace/xlat/ |
D | open_mode_flags.in | 23 /* O_TMPFILE should be listed before O_DIRECTORY and __O_TMPFILE */ 24 O_TMPFILE
|
D | open_mode_flags.h | 69 #if defined(O_TMPFILE) || (defined(HAVE_DECL_O_TMPFILE) && HAVE_DECL_O_TMPFILE) 70 XLAT(O_TMPFILE),
|
/external/ltp/include/lapi/ |
D | fcntl.h | 37 #ifndef O_TMPFILE 38 # define O_TMPFILE (020000000 | O_DIRECTORY) macro
|
/external/strace/ |
D | open.c | 119 #ifdef O_TMPFILE 121 # define STRACE_O_TMPFILE (O_TMPFILE & ~O_DIRECTORY)
|
D | strace.spec | 137 when O_TMPFILE flag is set (#1377846).
|
D | strace.spec.in | 137 when O_TMPFILE flag is set (#1377846).
|
D | NEWS | 331 when O_TMPFILE flag is set. (Addresses Fedora bug #1377846). 535 * Added O_TMPFILE to the list of recognized open mode flags.
|
/external/autotest/client/site_tests/platform_ToolchainTests/src/ |
D | clang-fortify-tests.cpp | 226 open("/", O_TMPFILE); in testFcntl() 230 open64("/", O_TMPFILE); in testFcntl() 234 openat(0, "/", O_TMPFILE); in testFcntl() 238 openat64(0, "/", O_TMPFILE); in testFcntl()
|
/external/libffi/src/ |
D | closures.c | 291 #ifdef O_TMPFILE in open_temp_exec_file_dir() 301 #ifdef O_TMPFILE in open_temp_exec_file_dir() 302 fd = open (dir, flags | O_RDWR | O_EXCL | O_TMPFILE, 0700); in open_temp_exec_file_dir()
|
/external/ltp/testcases/kernel/syscalls/openat/ |
D | openat03.c | 53 int fd = openat(AT_FDCWD, ".", O_TMPFILE | O_RDWR, 0600); in setup() 67 int fd = openat(AT_FDCWD, ".", O_TMPFILE | O_RDWR, mode); in openat_tmp()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 93 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY) macro
|
/external/kmod/ |
D | TODO | 46 - use new O_TMPFILE for tmp file creation
|
/external/perfetto/src/perfetto_cmd/ |
D | perfetto_cmd.cc | 359 fd.reset(open(kTempDropBoxTraceDir, O_TMPFILE | O_RDWR, 0600)); in OpenOutputFile()
|
/external/python/cpython3/Doc/library/ |
D | tempfile.rst | 62 The :py:data:`os.O_TMPFILE` flag is used if it is available and works 67 The :py:data:`os.O_TMPFILE` flag is now used if available.
|
D | os.rst | 987 O_TMPFILE 996 Add :data:`O_TMPFILE`, only available on Linux Kernel 3.11
|
/external/python/cpython3/Lib/ |
D | tempfile.py | 593 flags2 = (flags | _os.O_TMPFILE) & ~_os.O_CREAT
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 12473 #ifdef O_TMPFILE 12474 if (PyModule_AddIntMacro(m, O_TMPFILE)) return -1;
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1192 :data:`~os.O_PATH` (un-opened file descriptor), and :data:`~os.O_TMPFILE`
|