/third_party/musl/porting/liteos_m/user/src/internal/ |
H A D | syscall.h | 363 #define __sys_open2(x,pn,fl) __syscall2(SYS_open, pn, (fl)|O_LARGEFILE) 364 #define __sys_open3(x,pn,fl,mo) __syscall3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 365 #define __sys_open_cp2(x,pn,fl) __syscall_cp2(SYS_open, pn, (fl)|O_LARGEFILE) 366 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 368 #define __sys_open2(x,pn,fl) __syscall3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 369 #define __sys_open3(x,pn,fl,mo) __syscall4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo) 370 #define __sys_open_cp2(x,pn,fl) __syscall_cp3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 371 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo)
|
/third_party/musl/src/internal/ |
H A D | syscall.h | 384 #define __sys_open2(x,pn,fl) __syscall2(SYS_open, pn, (fl)|O_LARGEFILE) 385 #define __sys_open3(x,pn,fl,mo) __syscall3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 386 #define __sys_open_cp2(x,pn,fl) __syscall_cp2(SYS_open, pn, (fl)|O_LARGEFILE) 387 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 389 #define __sys_open2(x,pn,fl) __syscall3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 390 #define __sys_open3(x,pn,fl,mo) __syscall4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo) 391 #define __sys_open_cp2(x,pn,fl) __syscall_cp3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 392 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo)
|
/third_party/musl/porting/linux/user/src/internal/ |
H A D | syscall.h | 378 #define __sys_open2(x,pn,fl) __syscall2(SYS_open, pn, (fl)|O_LARGEFILE) 379 #define __sys_open3(x,pn,fl,mo) __syscall3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 380 #define __sys_open_cp2(x,pn,fl) __syscall_cp2(SYS_open, pn, (fl)|O_LARGEFILE) 381 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp3(SYS_open, pn, (fl)|O_LARGEFILE, mo) 383 #define __sys_open2(x,pn,fl) __syscall3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 384 #define __sys_open3(x,pn,fl,mo) __syscall4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo) 385 #define __sys_open_cp2(x,pn,fl) __syscall_cp3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE) 386 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo)
|
/third_party/f2fs-tools/tools/ |
H A D | fibmap.c | 15 #ifndef O_LARGEFILE 16 #define O_LARGEFILE 0 macro 159 fd = open(filename, O_RDONLY|O_LARGEFILE);
|
/third_party/ltp/testcases/kernel/fs/doio/ |
H A D | open_flags.c | 178 #ifdef O_LARGEFILE 179 {"O_LARGEFILE", O_LARGEFILE},
|
/third_party/ltp/testcases/kernel/io/aio/ |
H A D | aio02.c | 32 DESC_FLAGS_OPR(IO_CMD_PWRITE, O_WRONLY | O_TRUNC | O_DIRECT | O_LARGEFILE | O_CREAT), 35 DESC_FLAGS_OPR(IO_CMD_PREAD, O_RDONLY | O_DIRECT | O_LARGEFILE),
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
H A D | open12.c | 19 * O_APPEND, O_NOATIME, O_CLOEXEC and O_LARGEFILE. 218 O_LARGEFILE | O_RDWR | O_CREAT, 0777); in test_largefile() 229 TEST(open(LARGE_FILE, O_LARGEFILE | O_RDONLY, 0777)); in test_largefile() 232 tst_resm(TFAIL, "test O_LARGEFILE for open failed"); in test_largefile() 234 tst_resm(TPASS, "test O_LARGEFILE for open success"); in test_largefile()
|
/third_party/ltp/testcases/kernel/syscalls/openat/ |
H A D | openat02.c | 26 * to be opened, when 'flags' is set to O_LARGEFILE. 193 O_LARGEFILE | O_RDWR | O_CREAT, 0777); in testfunc_largefile() 203 TEST(openat(AT_FDCWD, LARGE_FILE, O_LARGEFILE | O_RDONLY, 0777)); in testfunc_largefile() 206 tst_resm(TFAIL, "test O_LARGEFILE for openat failed"); in testfunc_largefile() 208 tst_resm(TPASS, "test O_LARGEFILE for openat success"); in testfunc_largefile()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/ |
H A D | fcntl.h | 38 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/porting/liteos_m/kernel/include/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/src/fcntl/ |
H A D | openat.c | 16 return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode); in openat()
|
/third_party/musl/porting/liteos_a/kernel/include/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/porting/liteos_m/user/include/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/porting/uniproton/kernel/include/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/arch/aarch64/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/arch/generic/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0100000 macro
|
/third_party/musl/arch/m68k/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/arch/mipsn32/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 020000 macro
|
/third_party/musl/arch/arm/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0400000 macro
|
/third_party/musl/arch/mips/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 020000 macro
|
/third_party/musl/arch/mips64/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 020000 macro
|
/third_party/musl/arch/powerpc/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0200000 macro
|
/third_party/musl/arch/powerpc64/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0200000 macro
|
/third_party/musl/arch/s390x/bits/ |
H A D | fcntl.h | 16 #define O_LARGEFILE 0100000 macro
|