/external/e2fsprogs/lib/ext2fs/ |
D | getsectsize.c | 49 fd = open64(file, O_RDONLY); in ext2fs_get_device_sectsize() 51 fd = open(file, O_RDONLY); in ext2fs_get_device_sectsize() 75 fd = open64(file, O_RDONLY); in ext2fs_get_device_phys_sectsize() 77 fd = open(file, O_RDONLY); in ext2fs_get_device_phys_sectsize()
|
/external/valgrind/main/none/tests/ |
D | fdleak_dup2.c | 12 s1 = DO( open("/dev/null", O_RDONLY) ); in main() 13 s2 = DO( open("/dev/null", O_RDONLY) ); in main()
|
D | rlimit_nofile.c | 56 if (open("/dev/null", O_RDONLY) < 0) in main() 62 if ((fd = open("/dev/null", O_RDONLY)) >= 0) in main()
|
D | fdleak_open.c | 9 DO( open("/dev/null", O_RDONLY) ); in main()
|
D | fdleak_dup.c | 11 s = DO( open("/dev/null", O_RDONLY) ); in main()
|
D | fdleak_fcntl.c | 12 s1 = DO( open("/dev/null", O_RDONLY) ); in main()
|
/external/e2fsprogs/lib/e2p/ |
D | fsetversion.c | 34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fgetversion.c | 34 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 36 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fsetflags.c | 47 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 49 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
D | fgetflags.c | 38 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK|O_LARGEFILE) 40 #define OPEN_FLAGS (O_RDONLY|O_NONBLOCK)
|
/external/chromium/base/ |
D | dir_reader_posix_unittest.cc | 31 const int prev_wd = open(".", O_RDONLY | O_DIRECTORY); in TEST() 39 const int fd = open(buf, O_CREAT | O_RDONLY | O_EXCL, 0600); in TEST()
|
/external/libmtp/examples/ |
D | thumb.c | 88 if ( (fd = open(path, O_RDONLY|O_BINARY) == -1) ) { 90 if ( (fd = open(path, O_RDONLY)) == -1) {
|
D | albumart.c | 108 if ( (fd = open(path, O_RDONLY|O_BINARY) == -1) ) { 110 if ( (fd = open(path, O_RDONLY)) == -1) {
|
/external/openssh/ |
D | ssh-keysign.c | 170 key_fd[i++] = open(_PATH_HOST_DSA_KEY_FILE, O_RDONLY); in main() 171 key_fd[i++] = open(_PATH_HOST_ECDSA_KEY_FILE, O_RDONLY); in main() 172 key_fd[i++] = open(_PATH_HOST_RSA_KEY_FILE, O_RDONLY); in main()
|
/external/elfutils/libdwfl/ |
D | linux-proc-maps.c | 79 int fd = open64 (fname, O_RDONLY); in find_sysinfo_ehdr() 298 int fd = open64 (module_name, O_RDONLY); in dwfl_linux_proc_find_elf() 320 int fd = open64 (fname, O_RDONLY); in dwfl_linux_proc_find_elf()
|
/external/stlport/src/details/ |
D | fstream_stdio.cpp | 69 # ifndef O_RDONLY 70 # define O_RDONLY _O_RDONLY macro 81 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR)
|
D | fstream_unistd.cpp | 53 # define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR) 83 case O_RDONLY: in flag_to_openmode() 176 flags = O_RDONLY; in _M_open()
|
/external/yaffs2/yaffs2/direct/ |
D | yaffsfs.h | 23 #ifndef O_RDONLY 24 #define O_RDONLY 00 macro
|
/external/qemu/ |
D | loader.c | 57 fd = open(filename, O_RDONLY | O_BINARY); in get_image_size() 70 fd = open(filename, O_RDONLY | O_BINARY); in load_image() 217 fd = open(filename, O_RDONLY | O_BINARY); in load_aout() 313 fd = open(filename, O_RDONLY | O_BINARY); in load_elf() 466 fd = open(filename, O_RDONLY | O_BINARY); in load_uimage()
|
/external/clang/test/Analysis/ |
D | unix-fns.c | 24 #define O_RDONLY 0x0000 macro 31 fd = open(path, O_RDONLY); // no-warning in test_open()
|
/external/linux-tools-perf/util/ |
D | trace-event-info.c | 219 fd = open(file, O_RDONLY); in copy_file() 250 fd = open(file, O_RDONLY); in get_size() 266 fd = open(path, O_RDONLY); in read_header_files() 284 fd = open(path, O_RDONLY); in read_header_files()
|
/external/netperf/ |
D | netcpu_procstat.c | 68 proc_stat_fd = open (PROC_STAT_FILE_NAME, O_RDONLY, NULL); in cpu_util_init() 115 proc_stat_fd = open (PROC_STAT_FILE_NAME, O_RDONLY, NULL); in calibrate_idle_rate()
|
/external/fsck_msdos/ |
D | check.c | 74 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0); in checkfilesys() 76 dosfs = open(fname, O_RDONLY, 0); in checkfilesys()
|
/external/valgrind/main/memcheck/tests/ |
D | mmaptest.c | 12 fd = open("dir", O_RDONLY); in main()
|
D | erringfds.c | 12 fd = open("foo/bar/xyzzy", O_RDONLY); /* fails */ in main()
|