Home
last modified time | relevance | path

Searched refs:O_LARGEFILE (Results 1 – 25 of 74) sorted by relevance

123

/third_party/e2fsprogs/lib/e2p/
Dfsetflags.c51 #ifndef O_LARGEFILE
52 #define O_LARGEFILE 0 macro
58 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_NOFOLLOW)
Dfgetflags.c42 #ifndef O_LARGEFILE
43 #define O_LARGEFILE 0 macro
49 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_NOFOLLOW)
Dfgetproject.c36 #ifdef O_LARGEFILE
37 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
Dfgetversion.c40 #ifdef O_LARGEFILE
41 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
Dfsetversion.c40 #ifdef O_LARGEFILE
41 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
Dfsetproject.c36 #ifdef O_LARGEFILE
37 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE)
/third_party/musl/src/internal/
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/porting/liteos_m/user/src/internal/
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/porting/linux/user/src/internal/
Dsyscall.h359 #define __sys_open2(x,pn,fl) __syscall2(SYS_open, pn, (fl)|O_LARGEFILE)
360 #define __sys_open3(x,pn,fl,mo) __syscall3(SYS_open, pn, (fl)|O_LARGEFILE, mo)
361 #define __sys_open_cp2(x,pn,fl) __syscall_cp2(SYS_open, pn, (fl)|O_LARGEFILE)
362 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp3(SYS_open, pn, (fl)|O_LARGEFILE, mo)
364 #define __sys_open2(x,pn,fl) __syscall3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE)
365 #define __sys_open3(x,pn,fl,mo) __syscall4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo)
366 #define __sys_open_cp2(x,pn,fl) __syscall_cp3(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE)
367 #define __sys_open_cp3(x,pn,fl,mo) __syscall_cp4(SYS_openat, AT_FDCWD, pn, (fl)|O_LARGEFILE, mo)
/third_party/f2fs-tools/tools/
Dfibmap.c15 #ifndef O_LARGEFILE
16 #define O_LARGEFILE 0 macro
157 fd = open(filename, O_RDONLY|O_LARGEFILE);
/third_party/e2fsprogs/debugfs/
Ddump.c35 #ifndef O_LARGEFILE
36 #define O_LARGEFILE 0 macro
182 fd = open(out_fn, O_CREAT | O_WRONLY | O_TRUNC | O_LARGEFILE, 0666); in do_dump()
269 fd = open(fullname, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRWXU); in rdump_inode()
/third_party/ltp/testcases/kernel/fs/doio/
Dopen_flags.c178 #ifdef O_LARGEFILE
179 {"O_LARGEFILE", O_LARGEFILE},
/third_party/musl/porting/liteos_a_newlib/kernel/include/
Dfcntl.h38 #define O_LARGEFILE 0400000 macro
/third_party/ltp/testcases/kernel/syscalls/openat/
Dopenat02.c199 O_LARGEFILE | O_RDWR | O_CREAT, 0777); in testfunc_largefile()
209 TEST(openat(AT_FDCWD, LARGE_FILE, O_LARGEFILE | O_RDONLY, 0777)); in testfunc_largefile()
/third_party/e2fsprogs/util/
Dcopy_sparse.c110 fd = open(src, O_RDONLY | O_LARGEFILE); in copy_sparse_file()
135 ofd = open(dest, O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0777); in copy_sparse_file()
/third_party/ltp/testcases/kernel/syscalls/open/
Dopen12.c240 O_LARGEFILE | O_RDWR | O_CREAT, 0777); in test_largefile()
250 TEST(open(LARGE_FILE, O_LARGEFILE | O_RDONLY, 0777)); in test_largefile()
/third_party/musl/src/fcntl/
Dopenat.c16 return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode); in openat()
/third_party/musl/porting/liteos_m/user/include/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/powerpc64/bits/
Dfcntl.h16 #define O_LARGEFILE 0200000 macro
/third_party/musl/arch/m68k/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/arm/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/liteos_m/kernel/include/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/arch/x86_64/bits/
Dfcntl.h16 #define O_LARGEFILE 0 macro
/third_party/musl/arch/aarch64/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro
/third_party/musl/porting/uniproton/kernel/include/bits/
Dfcntl.h16 #define O_LARGEFILE 0400000 macro

123