/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | fcntl_ext.c | 31 #ifdef openat64 32 #undef openat64 macro 326 * @tc.desc : test openat64 normal condition 331 int fd = openat64(AT_FDCWD, "/proc/version", O_RDWR | O_CREAT, FILE_MODE_ALL); in openat64_0010() 340 * @tc.desc : test openat64 O_CREAT without mode 358 openat64(AT_FDCWD, "/proc/version", flags); in openat64_0020() 374 * @tc.desc : test openat64 O_TMPFILE without mode 392 openat64(AT_FDCWD, "/proc/version", flags); in openat64_0030() 408 * @tc.desc : test openat64 only O_RDWR 413 int fd = openat64(AT_FDCW in openat64_0040() [all...] |
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | fcntl.h | 39 int __openat64_real(int, const char*, int, ...) __DIAGNOSE_RENAME(openat64); variable 105 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 107 __DIAGNOSE_ERROR_IF(__DIAGNOSE_OPEN_MODES_USEFUL(flags), "'openat64' " OPEN_TOO_FEW_ARGS_ERROR) 117 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 119 __DIAGNOSE_WARNING_IF(!__DIAGNOSE_OPEN_MODES_USEFUL(flags) && modes, "'openat64' " OPEN_USELESS_MODES_WARNING)
|
/third_party/musl/include/fortify/linux/ |
H A D | fcntl.h | 39 int __openat64_real(int, const char*, int, ...) __DIAGNOSE_RENAME(openat64); variable 105 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 107 __DIAGNOSE_ERROR_IF(__DIAGNOSE_OPEN_MODES_USEFUL(flags), "'openat64' " OPEN_TOO_FEW_ARGS_ERROR) 117 int openat64(int dirfd, const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 119 __DIAGNOSE_WARNING_IF(!__DIAGNOSE_OPEN_MODES_USEFUL(flags) && modes, "'openat64' " OPEN_USELESS_MODES_WARNING)
|
/third_party/musl/src/fcntl/ |
H A D | openat.c | 19 weak_alias(openat, openat64);
|
/third_party/musl/porting/linux/user/include/ |
H A D | fcntl.h | 205 #define openat64 openat macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | fcntl.h | 204 #define openat64 openat macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | fcntl.h | 204 #define openat64 openat macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | fcntl.h | 204 #define openat64 openat macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | fcntl.h | 196 #define openat64 openat macro
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | fcntl.h | 204 #define openat64 openat macro
|
/third_party/musl/include/ |
H A D | fcntl.h | 207 #define openat64 openat macro
|
/third_party/musl/porting/linux/user/src/fortify/ |
H A D | fortify.c | 88 __fortify_error("openat64: " OPEN_TOO_FEW_ARGS_ERROR); in __openat64_chk() 90 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(openat64)(fd, pathname, __force_O_LARGEFILE(flags), 0); in __openat64_chk()
|
/third_party/musl/src/fortify/linux/ |
H A D | fortify.c | 99 __fortify_error("openat64: " OPEN_TOO_FEW_ARGS_ERROR); in __openat64_chk() 101 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(openat64)(fd, pathname, __force_O_LARGEFILE(flags), 0); in __openat64_chk()
|
/third_party/rust/crates/rustix/src/backend/libc/ |
H A D | offset.rs | 172 pub(super) use c::openat64 as libc_openat;
|
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 1719 pub fn openat64(fd: ::c_int, path: *const c_char, oflag: ::c_int, ...) -> ::c_int; in openat64() functions
|