Home
last modified time | relevance | path

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

/system/vold/
DBenchmarkGen.h42 int t3433f17 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
53 int t3433f18 = TEMP_FAILURE_RETRY(open("file1", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
61 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
71 t3433f18 = TEMP_FAILURE_RETRY(open("file2", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
79 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
89 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
99 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
109 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
119 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
129 t3433f18 = TEMP_FAILURE_RETRY(open("file0", O_RDONLY|O_LARGEFILE)); in BenchmarkRun()
[all …]
Dsecdiscard.cpp107 AutoCloseFD fs_fd(block_device, O_RDWR | O_LARGEFILE); in secdiscard_path()
/system/update_engine/payload_consumer/
Dfile_writer_unittest.cc47 O_CREAT | O_LARGEFILE | O_TRUNC | O_WRONLY, in TEST()
61 O_CREAT | O_LARGEFILE | O_TRUNC, 0644)); in TEST()
72 O_CREAT | O_LARGEFILE | O_TRUNC | O_RDONLY, in TEST()
/system/update_engine/common/
Dtest_utils.cc159 HANDLE_EINTR(open("/dev/loop-control", O_RDWR | O_LARGEFILE)); in BindToUnusedLoopDevice()
167 HANDLE_EINTR(open(out_lo_dev_name->c_str(), O_RDWR | O_LARGEFILE)); in BindToUnusedLoopDevice()
174 HANDLE_EINTR(open(out_lo_dev_name->c_str(), O_RDWR | O_LARGEFILE)); in BindToUnusedLoopDevice()
189 (writable ? O_RDWR : O_RDONLY) | O_LARGEFILE | O_CLOEXEC); in BindToUnusedLoopDevice()
210 HANDLE_EINTR(open(lo_dev_name.c_str(), O_RDWR | O_LARGEFILE)); in UnbindLoopDevice()
/system/extras/tests/directiotest/
Ddirectiotest.c188 fd = open(path, O_RDWR | O_DIRECT | O_LARGEFILE); in main()
/system/extras/verity/fec/
Dimage.cpp46 #define O_LARGEFILE 0 macro
294 int fd = TEMP_FAILURE_RETRY(open(fn.c_str(), flags | O_LARGEFILE)); in image_load()
/system/extras/verity/
Dverify_boot_signature.c373 if ((fd = open(image_file, O_RDONLY | O_LARGEFILE)) == -1) { in verify()