Home
last modified time | relevance | path

Searched refs:O_LARGEFILE (Results 1 - 25 of 89) sorted by relevance

1234

/third_party/musl/porting/liteos_m/user/src/internal/
H A Dsyscall.h363 #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 Dsyscall.h384 #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 Dsyscall.h378 #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 Dfibmap.c15 #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 Dopen_flags.c178 #ifdef O_LARGEFILE
179 {"O_LARGEFILE", O_LARGEFILE},
/third_party/ltp/testcases/kernel/io/aio/
H A Daio02.c32 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 Dopen12.c19 * 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 Dopenat02.c26 * 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 Dfcntl.h38 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/src/fcntl/
H A Dopenat.c16 return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode); in openat()
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/liteos_m/user/include/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/aarch64/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/generic/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0100000 macro
/third_party/musl/arch/m68k/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/mipsn32/bits/
H A Dfcntl.h16 #define O_LARGEFILE 020000 macro
/third_party/musl/arch/arm/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/mips/bits/
H A Dfcntl.h16 #define O_LARGEFILE 020000 macro
/third_party/musl/arch/mips64/bits/
H A Dfcntl.h16 #define O_LARGEFILE 020000 macro
/third_party/musl/arch/powerpc/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0200000 macro
/third_party/musl/arch/powerpc64/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0200000 macro
/third_party/musl/arch/s390x/bits/
H A Dfcntl.h16 #define O_LARGEFILE 0100000 macro

Completed in 8 milliseconds

1234