Home
last modified time | relevance | path

Searched refs:__O_TMPFILE (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/kernel/include/uapi/asm-generic/
H A Dfcntl.h88 #ifndef __O_TMPFILE
89 #define __O_TMPFILE 020000000 macro
93 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
94 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/asm-generic/
H A Dfcntl.h88 #ifndef __O_TMPFILE
89 #define __O_TMPFILE 020000000 macro
93 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
94 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/asm-generic/
H A Dfcntl.h88 #ifndef __O_TMPFILE
89 #define __O_TMPFILE 020000000 macro
93 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
94 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
/OK3568_Linux_fs/kernel/tools/include/uapi/asm-generic/
H A Dfcntl.h87 #ifndef __O_TMPFILE
88 #define __O_TMPFILE 020000000 macro
92 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
93 #define O_TMPFILE_MASK (__O_TMPFILE | O_DIRECTORY | O_CREAT)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dfcntl.h39 #ifdef __O_TMPFILE
41 (((oflag) & O_CREAT) != 0 || ((oflag) & __O_TMPFILE) == __O_TMPFILE)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dfcntl.h39 #ifdef __O_TMPFILE
41 (((oflag) & O_CREAT) != 0 || ((oflag) & __O_TMPFILE) == __O_TMPFILE)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dfcntl-linux.h99 #ifndef __O_TMPFILE
100 # define __O_TMPFILE (020000000 | __O_DIRECTORY) macro
151 # define O_TMPFILE __O_TMPFILE /* Atomically create nameless file. */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dfcntl-linux.h99 #ifndef __O_TMPFILE
100 # define __O_TMPFILE (020000000 | __O_DIRECTORY) macro
151 # define O_TMPFILE __O_TMPFILE /* Atomically create nameless file. */
/OK3568_Linux_fs/kernel/arch/parisc/include/uapi/asm/
H A Dfcntl.h21 #define __O_TMPFILE 040000000 macro
/OK3568_Linux_fs/kernel/arch/alpha/include/uapi/asm/
H A Dfcntl.h36 #define __O_TMPFILE 0100000000 macro
/OK3568_Linux_fs/kernel/arch/sparc/include/uapi/asm/
H A Dfcntl.h39 #define __O_TMPFILE 0x2000000 macro
/OK3568_Linux_fs/kernel/include/linux/
H A Dfcntl.h13 O_NOATIME | O_CLOEXEC | O_PATH | __O_TMPFILE)
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dprofiler.inc.h17 #define __O_TMPFILE 020000000 macro
18 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
/OK3568_Linux_fs/kernel/fs/
H A Dopen.c986 #define WILL_CREATE(flags) (flags & (O_CREAT | __O_TMPFILE))
1053 if (flags & __O_TMPFILE) { in build_open_flags()
H A Dnamei.c3450 if (unlikely(file->f_flags & __O_TMPFILE)) { in path_openat()