/third_party/musl/libc-test/src/functionalext/fortify/ |
H A D | fcntl_ext.c | 27 #ifdef open64 28 #undef open64 macro 230 * @tc.desc : test open64 normal condition 235 int fd = open64("/proc/version", O_RDWR | O_CREAT, FILE_MODE_ALL); in open64_0010() 244 * @tc.desc : test open64 O_CREAT without mode 262 open64("/proc/version", flags); in open64_0020() 278 * @tc.desc : test open64 O_TMPFILE without mode 296 open64("/proc/version", flags); in open64_0030() 312 * @tc.desc : test open64 only O_RDWR 317 int fd = open64("/pro in open64_0040() [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/fcntl/fcntl_gtest/ |
H A D | fcntl_open64_test.cpp | 13 * @tc.desc: Verify whether the "/proc/version" file could be successfully opened through open and open64 functions. 21 file = open64("/proc/version", O_RDONLY); in HWTEST_F() 28 * @tc.desc: Verify that the open64 interface has the same functionality and behavior as the open interface. 36 file = open64("/proc/version", O_WRONLY); in HWTEST_F() 43 * @tc.desc: Verify that the open64 interface has the same functionality and behavior as the open interface when opening 52 file = open64("/proc/version", O_RDWR); in HWTEST_F()
|
/third_party/musl/porting/linux/user/include/fortify/ |
H A D | fcntl.h | 38 int __open64_real(const char*, int, ...) __DIAGNOSE_RENAME(open64); variable 85 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 87 __DIAGNOSE_ERROR_IF(__DIAGNOSE_OPEN_MODES_USEFUL(flags), "'open64' " OPEN_TOO_FEW_ARGS_ERROR) 97 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 99 __DIAGNOSE_WARNING_IF(!__DIAGNOSE_OPEN_MODES_USEFUL(flags) && modes, "'open64' " OPEN_USELESS_MODES_WARNING)
|
/third_party/musl/include/fortify/linux/ |
H A D | fcntl.h | 38 int __open64_real(const char*, int, ...) __DIAGNOSE_RENAME(open64); variable 85 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags) 87 __DIAGNOSE_ERROR_IF(__DIAGNOSE_OPEN_MODES_USEFUL(flags), "'open64' " OPEN_TOO_FEW_ARGS_ERROR) 97 int open64(const char* const __DIAGNOSE_PASS_OBJECT_SIZE path, int flags, mode_t modes) 99 __DIAGNOSE_WARNING_IF(!__DIAGNOSE_OPEN_MODES_USEFUL(flags) && modes, "'open64' " OPEN_USELESS_MODES_WARNING)
|
/third_party/musl/porting/linux/user/src/fcntl/ |
H A D | open.c | 35 weak_alias(open, open64);
|
/third_party/musl/libc-test/src/functionalext/supplement/fortify/fortify_gtest/ |
H A D | fortify_open64_chk_test.cpp | 22 fd = open64("/proc/version", O_RDWR | O_CREAT, 0777); in HWTEST_F()
|
/third_party/musl/src/fcntl/ |
H A D | open.c | 31 weak_alias(open, open64);
|
/third_party/ltp/testcases/kernel/mem/mmapstress/ |
H A D | mmapstress07.c | 153 if ((rofd = open64(tmpname, O_RDONLY | O_CREAT, 0777)) == -1) { 161 if ((rwfd = open64(tmpname, O_RDWR)) == -1) {
|
H A D | mmapstress10.c | 325 if ((fd = open64(filename, O_CREAT | O_TRUNC | O_RDWR, 0664)) == -1) { 560 if ((fd_mapper = open64(file, O_RDWR)) == -1) { 714 if ((fd_writer = open64(file, O_RDWR)) == -1) { 800 if ((fd = open64(file, O_RDONLY)) == -1) {
|
/third_party/musl/porting/linux/user/include/ |
H A D | fcntl.h | 204 #define open64 open macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | fcntl.h | 203 #define open64 open macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | fcntl.h | 203 #define open64 open macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | fcntl.h | 203 #define open64 open macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | fcntl.h | 201 int open64(const char *, int, ...);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | fcntl.h | 203 #define open64 open macro
|
/third_party/musl/include/ |
H A D | fcntl.h | 206 #define open64 open macro
|
/third_party/NuttX/fs/vfs/ |
H A D | fs_open.c | 363 int open64 (const char *__path, int __oflag, ...) in open64() function
|
/third_party/mesa3d/src/intel/tools/ |
H A D | intel_sanitize_gpu.c | 24 #undef _FILE_OFFSET_BITS /* prevent #define open open64 */ 343 open64(const char *path, int flags, ...);
|
/third_party/mesa3d/src/drm-shim/ |
H A D | drm_shim.c | 31 /* Prevent glibc from defining open64 when we want to alias it. */ 294 PUBLIC int open64(const char*, int, ...) __attribute__((alias("open")));
|
/third_party/node/deps/zlib/ |
H A D | gzlib.c | 14 # define OPEN open64
|
/third_party/musl/porting/linux/user/src/fortify/ |
H A D | fortify.c | 80 __fortify_error("open64: " OPEN_TOO_FEW_ARGS_ERROR); in __open64_chk() 82 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(open64)(pathname, __force_O_LARGEFILE(flags), 0); in __open64_chk()
|
/third_party/musl/src/fortify/linux/ |
H A D | fortify.c | 91 __fortify_error("open64: " OPEN_TOO_FEW_ARGS_ERROR); in __open64_chk() 93 return __DIAGNOSE_CALL_BYPASSING_FORTIFY(open64)(pathname, __force_O_LARGEFILE(flags), 0); in __open64_chk()
|
/third_party/pulseaudio/src/utils/ |
H A D | padsp.c | 64 #undef open64 macro 174 _open64 = (int (*)(const char *, int, mode_t)) dlsym_fn(RTLD_NEXT, "open64"); \ 2576 #undef open64 macro 2577 int open64(const char *filename, int flags, ...) { function 2581 debug(DEBUG_LEVEL_VERBOSE, __FILE__": open64(%s)\n", filename?filename:"NULL");
|
/third_party/elfutils/libdwfl/ |
H A D | linux-kernel-modules.c | 58 #define open open64
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod-client.c | 100 #define open open64
|