Home
last modified time | relevance | path

Searched refs:open (Results 1026 - 1050 of 8525) sorted by relevance

1...<<41424344454647484950>>...341

/kernel/linux/linux-6.6/drivers/scsi/qedi/
H A Dqedi_dbg.h116 .open = simple_open, \
125 .open = drv##_dbg_##ops##_open, \
/kernel/linux/linux-6.6/sound/usb/caiaq/
H A Dmidi.c94 .open = snd_usb_caiaq_midi_output_open,
101 .open = snd_usb_caiaq_midi_input_open,
/kernel/liteos_a/testsuites/unittest/container/smoke/
H A DIt_time_container_002.cpp52 int fd = open(path, O_RDWR); in childFunc()
87 int fd = open(path, O_WRONLY); in WriteProcTime()
H A DIt_user_container_002.cpp52 int uidMap = open(uidMapPath.c_str(), O_WRONLY); in WriteIdMap()
64 int gidMap = open(gidMapPath.c_str(), O_WRONLY); in WriteIdMap()
/third_party/elfutils/libdwfl/
H A Ddwfl_build_id_find_elf.c99 fd = TEMP_FAILURE_RETRY (open (name, O_RDONLY)); in __libdwfl_open_by_build_id()
159 int fd = open (executable, O_RDONLY); in dwfl_build_id_find_elf()
/third_party/elfutils/tests/
H A Dvendorelf.c40 int fd = open (fname, O_RDWR | O_CREAT | O_TRUNC, DEFFILEMODE); in check_elf()
43 printf ("cannot open `%s': %s\n", fname, strerror (errno)); in check_elf()
128 fd = open (fname, O_RDONLY); in check_elf()
131 printf ("cannot open `%s' read-only: %s\n", fname, strerror (errno)); in check_elf()
/third_party/elfutils/libdw/
H A Ddwarf_getalt.c136 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()
/third_party/ffmpeg/tools/
H A Dcws2fws.c41 fd_in = open(argv[1], O_RDONLY); in main()
47 fd_out = open(argv[2], O_WRONLY | O_CREAT, 00644); in main()
/third_party/astc-encoder/Test/
H A Dastc_profile_valgrind.py83 with open(outfile, "w") as fileHandle:
121 with open("perf_%s_cga.txt" % quality.replace("-", ""), "w") as handle:
H A Dastc_image_info.py56 img = Image.open(image.name)
105 img = Image.open(image.name)
/third_party/backends/sanei/
H A Dsanei_access.c81 * The function tries to open an existing lockfile. On success, it reads out
98 fd = open( fn, O_RDONLY ); in get_lock_status()
100 DBG( 2, "does_process_exist: open >%s< failed: %s\n", in get_lock_status()
178 fd = open( fn, O_CREAT | O_EXCL | O_WRONLY, 0644 ); in sanei_access_lock()
199 DBG( 1, "sanei_access_lock: open >%s< failed: %s\n", in sanei_access_lock()
/third_party/benchmark/tools/
H A Dstrip_asm.py139 with open(input, 'r') as f:
142 with open(output, 'w') as f:
/third_party/cJSON/tests/unity/test/spec/
H A Dgenerate_module_existing_file_spec.rb14 File.open("sandbox/src/#{file}", "w") {|f| f.write("the original #{file}")}
18 File.open("sandbox/test/#{file}", "w") {|f| f.write("the original #{file}")}
/third_party/googletest/googletest/test/
H A Dgoogletest-json-outfiles-test.py185 with open(output_file1) as f:
188 with open(output_file2) as f:
/third_party/FreeBSD/sbin/fsck_msdosfs/
H A Dcheck.c62 dosfs = open(fname, rdonly ? O_RDONLY : O_RDWR, 0); in checkfilesys()
64 dosfs = open(fname, O_RDONLY, 0); in checkfilesys()
74 perr("Can't open `%s'", fname); in checkfilesys()
/third_party/PyYAML/tests/lib/
H A Dtest_schema.py62 with open(skip_filename, 'rb') as file:
68 with open(data_filename, 'rb') as file:
/third_party/libuv/test/
H A Dtest-osx-select.c57 fd = open("/dev/tty", O_RDONLY); in TEST_IMPL()
59 fprintf(stderr, "Cannot open /dev/tty as read-only: %s\n", strerror(errno)); in TEST_IMPL()
110 fd = open("/dev/tty", O_RDONLY); in TEST_IMPL()
112 fprintf(stderr, "Cannot open /dev/tty as read-only: %s\n", strerror(errno)); in TEST_IMPL()
/third_party/mbedtls/scripts/
H A Dmin_requirements.py60 for line in open(filename):
93 # Windows, the subprocess can't open the file because this process
96 with open(req_file_name, 'w') as req_file:
/third_party/mesa3d/.gitlab-ci/
H A Dreport-flakes.py66 for line in open(results, 'r').readlines():
103 for line in open(args.known_flakes).readlines():
/third_party/mbedtls/tests/scripts/
H A Dpsa_collect_statuses.py40 with open(log_file_name) as log:
84 with open(os.devnull, 'w') as devnull:
/third_party/jerryscript/tools/
H A Djs2c.py60 with open(path, 'r') as js_source:
121 with open(os.path.join(script_args.output_path, 'jerry-targetjs.h'), 'w') as gen_file:
/third_party/json/tests/thirdparty/imapdl/
H A Dfilterbr.py80 with open(filename) as f:
96 with open(s_filename) as f:
106 #with open(sys.argv[1]) as f:
/third_party/ltp/pan/cgi/
H A Dresults.cgi28 open (DF, "gunzip -c $get_df|") || print "$get_df not found\n";
30 open (DF, "$get_df") || print "$get_df not found";
/third_party/ltp/lib/
H A Dtst_fill_fs.c38 fd = open(file, O_WRONLY | O_CREAT, 0700); in fill_random()
41 tst_brk(TBROK | TERRNO, "open()"); in fill_random()
43 tst_res(TINFO | TERRNO, "open()"); in fill_random()
81 dir = open(path, O_PATH | O_DIRECTORY); in fill_flat_vec()
84 tst_res(TINFO | TERRNO, "open()"); in fill_flat_vec()
87 tst_brk(TBROK | TERRNO, "open(%s, %d) failed", path, O_PATH | O_DIRECTORY); in fill_flat_vec()
/third_party/ltp/testcases/kernel/device-drivers/drm/kernel_space/
H A Dtdrm.c61 .open = DRM(open), \

Completed in 9 milliseconds

1...<<41424344454647484950>>...341