/third_party/ltp/testcases/kernel/syscalls/utimensat/ |
D | utimensat01.c | 56 {AT_FDCWD, TEST_FILE, NULL, 0, O_RDONLY, 0, 0400, 0}, 57 {AT_FDCWD, TEST_FILE, &tnn, 0, O_RDONLY, 0, 0400, 0}, 58 {AT_FDCWD, TEST_FILE, &too, 0, O_RDONLY, 0, 0400, 0}, 59 {AT_FDCWD, TEST_FILE, &tno, 0, O_RDONLY, 0, 0400, 0}, 60 {AT_FDCWD, TEST_FILE, &ton, 0, O_RDONLY, 0, 0400, 0}, 61 {AT_FDCWD, TEST_FILE, &t11, 0, O_RDONLY, 0, 0400, 0}, 64 {AT_FDCWD, TEST_FILE, NULL, 0, O_RDONLY, 0, 0666, 0}, 65 {AT_FDCWD, TEST_FILE, &tnn, 0, O_RDONLY, 0, 0666, 0}, 66 {AT_FDCWD, TEST_FILE, &too, 0, O_RDONLY, 0, 0666, 0}, 67 {AT_FDCWD, TEST_FILE, &tno, 0, O_RDONLY, 0, 0666, 0}, [all …]
|
/third_party/musl/libc-test/src/functionalext/trace/ |
D | trace_marker.c | 106 int trace_fd = open("/sys/kernel/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0010() 108 trace_fd = open("/sys/kernel/debug/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0010() 157 int trace_fd = open("/sys/kernel/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0020() 159 trace_fd = open("/sys/kernel/debug/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0020() 208 int trace_fd = open("/sys/kernel/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0030() 210 trace_fd = open("/sys/kernel/debug/tracing/trace", O_CLOEXEC | O_RDONLY); in trace_marker_0030() 266 int trace_fd = open("/sys/kernel/tracing/trace", O_CLOEXEC | O_RDONLY | O_APPEND); in trace_marker_0040() 268 trace_fd = open("/sys/kernel/debug/tracing/trace", O_CLOEXEC | O_RDONLY | O_APPEND); in trace_marker_0040() 304 int trace_fd = open("/sys/kernel/tracing/trace", O_CLOEXEC | O_RDONLY | O_APPEND); in trace_marker_0040() 306 trace_fd = open("/sys/kernel/debug/tracing/trace", O_CLOEXEC | O_RDONLY | O_APPEND); in trace_marker_0040() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/name_to_handle_at/ |
D | name_to_handle_at01.c | 34 {&dir_fd, TEST_FILE, 0, O_RDONLY}, 37 {&dir_fd, TEST_FILE, AT_EMPTY_PATH, O_RDONLY}, 40 {&dir_fd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDONLY}, 43 {&dir_fd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_RDONLY}, 45 {&dir_fd, "", AT_EMPTY_PATH, O_RDONLY}, 46 {&file_fd, "", AT_EMPTY_PATH, O_RDONLY}, 49 {&fd_atcwd, TEST_FILE, 0, O_RDONLY}, 52 {&fd_atcwd, TEST_FILE, AT_EMPTY_PATH, O_RDONLY}, 55 {&fd_atcwd, TEST_FILE, AT_SYMLINK_FOLLOW, O_RDONLY}, 58 {&fd_atcwd, TEST_FILE, AT_EMPTY_PATH | AT_SYMLINK_FOLLOW, O_RDONLY}, [all …]
|
/third_party/ltp/testcases/kernel/syscalls/open/ |
D | open11.c | 74 .flags = O_RDONLY, 110 .flags = O_RDONLY, 124 .flags = O_RDONLY | O_DIRECTORY, 132 .flags = O_RDONLY, 154 .flags = O_RDONLY, 175 .flags = O_RDONLY, 197 .flags = O_RDONLY, 227 .flags = O_RDONLY | O_CREAT, 234 .flags = O_RDONLY | O_CREAT, 241 .flags = O_RDONLY | O_CREAT, [all …]
|
/third_party/ltp/testcases/kernel/syscalls/finit_module/ |
D | finit_module02.c | 62 {"invalid-fd", &fd_invalid, "", O_RDONLY | O_CLOEXEC, 0, 0, 0, 0, 64 {"zero-fd", &fd_zero, "", O_RDONLY | O_CLOEXEC, 0, 0, EINVAL, 0, NULL}, 65 {"null-param", &fd, NULL, O_RDONLY | O_CLOEXEC, 0, 0, EFAULT, 1, NULL}, 66 {"invalid-param", &fd, "status=invalid", O_RDONLY | O_CLOEXEC, 0, 0, 68 {"invalid-flags", &fd, "", O_RDONLY | O_CLOEXEC, -1, 0, EINVAL, 0, 70 {"no-perm", &fd, "", O_RDONLY | O_CLOEXEC, 0, 1, EPERM, 0, NULL}, 71 {"module-exists", &fd, "", O_RDONLY | O_CLOEXEC, 0, 0, EEXIST, 1, 77 {"directory", &fd_dir, "", O_RDONLY | O_CLOEXEC, 0, 0, 0, 0, dir_setup},
|
/third_party/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl32.c | 43 {O_RDONLY, O_RDONLY}, 44 {O_RDONLY, O_WRONLY}, 45 {O_RDONLY, O_RDWR}, 46 {O_WRONLY, O_RDONLY}, 49 {O_RDWR, O_RDONLY},
|
/third_party/pulseaudio/src/tests/ |
D | close-test.c | 12 open("/dev/null", O_RDONLY); in main() 13 open("/dev/null", O_RDONLY); in main() 14 open("/dev/null", O_RDONLY); in main() 15 open("/dev/null", O_RDONLY); in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/unistd/ |
D | fchown.c | 36 int fd = open("test.txt", O_RDONLY | O_CREAT, TEST_MODE); in fchown_0100() 53 int fd = open("test.txt", O_RDONLY | O_CREAT, TEST_MODE); in fchown_0200() 70 int fd = open("test.txt", O_RDONLY | O_CREAT, TEST_MODE); in fchown_0300() 87 int fd = open("test.txt", O_RDONLY | O_CREAT, TEST_MODE); in fchown_0400() 101 int fd = open("test.txt", O_RDONLY | O_CREAT, TEST_MODE); in fchown_0500()
|
/third_party/ltp/testcases/kernel/syscalls/fsetxattr/ |
D | fsetxattr02.c | 76 .fflags = O_RDONLY, 85 .fflags = O_RDONLY, 94 .fflags = O_RDONLY, 104 .fflags = (O_RDONLY | O_NONBLOCK), 113 .fflags = O_RDONLY, 122 .fflags = O_RDONLY, 131 .fflags = O_RDONLY,
|
/third_party/ltp/testcases/kernel/syscalls/fgetxattr/ |
D | fgetxattr02.c | 84 .fflags = O_RDONLY, 95 .fflags = O_RDONLY, 106 .fflags = O_RDONLY, 117 .fflags = (O_RDONLY | O_NONBLOCK), 127 .fflags = O_RDONLY, 138 .fflags = O_RDONLY, 149 .fflags = O_RDONLY,
|
/third_party/ltp/testcases/kernel/logging/kmsg/ |
D | kmsg01.c | 77 f = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in find_msg() 233 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_read_nonblock() 249 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY); in test_read_block() 265 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_partial_read() 341 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_read_returns_first_message() 394 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_messages_overwritten() 483 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_seek() 484 fd2 = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_seek() 519 fd = SAFE_OPEN("/dev/kmsg", O_RDONLY | O_NONBLOCK); in test_seek()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
D | rename.c | 28 int fd = open(oldname, O_RDONLY | O_CREAT, TEST_MODE); in rename_0100() 34 fd = open(oldname, O_RDONLY); in rename_0100() 36 fd = open(newname, O_RDONLY); in rename_0100() 83 int fd = open(newname, O_RDONLY); in rename_0300()
|
/third_party/toybox/toys/other/ |
D | acpi.c | 37 if ((fd = openat(dirfd, name, O_RDONLY)) < 0) return -1; 55 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in acpi_callback() 56 if ((fd = openat(dfd, "type", O_RDONLY)) < 0) goto done; in acpi_callback() 94 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, NULL)), O_RDONLY))) { in temp_callback() 119 if (0 <= (dfd = open((TT.cpath=dirtree_path(tree, &dfd)), O_RDONLY))) { in cool_callback()
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
D | tomoyo_new_test.c | 50 result = open("/etc/fstab", O_RDONLY); in test_read_etc_fstab() 200 result = open("/tmp/testfile0", O_RDONLY, 0600); in test_file_open_0() 205 result = open("/tmp/testfile1", O_CREAT | O_RDONLY, 0600); in test_file_open_1() 210 result = open("/tmp/testfile2", O_TRUNC | O_RDONLY, 0600); in test_file_open_2() 215 result = open("/tmp/testfile3", O_TRUNC | O_CREAT | O_RDONLY, 0600); in test_file_open_3() 220 result = open("/tmp/testfile4", O_APPEND | O_RDONLY, 0600); in test_file_open_4() 225 result = open("/tmp/testfile5", O_APPEND | O_CREAT | O_RDONLY, 0600); in test_file_open_5() 230 result = open("/tmp/testfile6", O_APPEND | O_TRUNC | O_RDONLY, 0600); in test_file_open_6() 236 O_APPEND | O_TRUNC | O_CREAT | O_RDONLY, 0600); in test_file_open_7()
|
D | tomoyo_new_file_test.c | 190 fd = open("/dev/null", O_RDONLY); in stage_file_test() 195 fd = open("/dev/null", O_RDONLY); in stage_file_test() 202 fd = open("/dev/null", O_RDONLY); in stage_file_test() 207 fd = open("/dev/null", O_RDONLY); in stage_file_test() 214 fd = open("/dev/null", O_RDONLY); in stage_file_test() 219 fd = open("/dev/null", O_RDONLY); in stage_file_test() 226 fd = open("/dev/null", O_RDONLY); in stage_file_test() 231 fd = open("/dev/null", O_RDONLY); in stage_file_test() 277 fd = open("/dev/null", O_RDONLY); in stage_file_test() 282 fd = open("/dev/null", O_RDONLY); in stage_file_test() [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | getdents.c | 33 int fd = open("/data/data", O_RDONLY); in getdents_0100() 47 int fd = open("/getdents", O_RDONLY); in getdents_0200() 60 int fd = open("/data/data", O_RDONLY); in getdents_0300()
|
D | copy_file_range.c | 51 fd_in = open(path_in, O_RDONLY); in copy_file_range_0100() 69 fd_out = open(path_out, O_RDONLY); in copy_file_range_0100() 132 fd_out = open(path_out, O_RDONLY | O_CREAT, TEST_MODE); in copy_file_range_0300()
|
/third_party/musl/libc-test/src/functionalext/supplement/dirent/ |
D | fdopendir.c | 34 int fd = open("/data/data", O_RDONLY); in fdopendir_0100() 61 int fd = open("/data/data/test.txt", O_RDONLY); in fdopendir_0300() 74 int fd = open("/data/data/test.txt", O_RDONLY); in fdopendir_0400()
|
/third_party/ltp/testcases/kernel/syscalls/fanotify/ |
D | fanotify02.c | 77 fd = SAFE_OPEN(fname, O_RDONLY); in test01() 105 fd = SAFE_OPEN(fname, O_RDONLY); in test01() 109 fd = SAFE_OPEN(".", O_RDONLY | O_DIRECTORY); in test01() 183 fd_notify = SAFE_FANOTIFY_INIT(FAN_CLASS_NOTIF, O_RDONLY); in setup()
|
/third_party/libxml2/ |
D | generate_header.py | 30 with os.fdopen(os.open(config_json_path, os.O_RDONLY, 0o755), 'r') as file: 34 with os.fdopen(os.open(file_path, os.O_RDONLY, 0o755), 'r') as file: 76 with os.fdopen(os.open(xmlversion_json_path, os.O_RDONLY, 0o755), 'r') as file: 80 with os.fdopen(os.open(file_path, os.O_RDONLY, 0o755), 'r') as file:
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | futimesat.c | 32 int dir_fd = open(path, O_RDONLY | O_DIRECTORY); in futimesat_0100() 84 int dir_fd = open(path, O_RDONLY | O_DIRECTORY); in futimesat_0200() 139 int dir_fd = open(path, O_RDONLY | O_DIRECTORY); in futimesat_time64_0200()
|
/third_party/ltp/testcases/kernel/syscalls/open_by_handle_at/ |
D | open_by_handle_at01.c | 34 {&dir_fd, &d_fhp, O_RDONLY}, 37 {&file_fd, &f_fhp, O_RDONLY}, 40 {&fd_atcwd, &at_fhp, O_RDONLY},
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/ |
D | SDL_audiodev_c.h | 30 #define OPEN_FLAGS_INPUT O_RDONLY 33 #define OPEN_FLAGS_INPUT (O_RDONLY|O_NONBLOCK)
|
/third_party/f2fs-tools/tools/f2fs_io/ |
D | f2fs_io.c | 235 fd = xopen(argv[1], O_RDONLY, 0); in do_getflags() 312 fd = xopen(argv[2], O_RDONLY, 0); in do_setflags() 361 fd = xopen(argv[2], O_RDONLY, 0); in do_shutdown() 387 fd = xopen(argv[2], O_RDONLY, 0); in do_pinfile() 677 fd = xopen(argv[6], O_RDONLY | flags, 0); in do_read() 751 fd = xopen(argv[4], O_RDONLY | flags, 0); in do_randread() 801 fd = xopen(argv[3], O_RDONLY | O_LARGEFILE, 0); in do_fiemap() 957 src_fd = xopen(argv[0], O_RDONLY | open_flags, 0); in do_copy() 1008 fd = xopen(argv[1], O_RDONLY, 0); in do_get_cblocks() 1033 fd = xopen(argv[1], O_RDONLY, 0); in do_release_cblocks() [all …]
|
/third_party/elfutils/libdw/ |
D | dwarf_getalt.c | 136 fd = TEMP_FAILURE_RETRY (open (id_path, O_RDONLY)); in find_debug_altlink() 145 fd = TEMP_FAILURE_RETRY (open (altpath, O_RDONLY)); in find_debug_altlink() 152 Dwarf *alt = dwarf_begin (fd, O_RDONLY); in find_debug_altlink()
|