Home
last modified time | relevance | path

Searched refs:open (Results 1176 - 1200 of 9885) sorted by relevance

1...<<41424344454647484950>>...396

/third_party/skia/third_party/externals/angle2/scripts/
H A Dbmp_to_nv12.py18 bmp_file = open(sys.argv[1], "rb")
75 nv12_file = open(sys.argv[2], "w")
/third_party/skia/third_party/externals/angle2/src/compiler/
H A Dgenerate_parser_tools.py82 with open(output_source, 'r') as flex_output:
95 with open(output_source, 'w') as flex_output_patched:
/third_party/vk-gl-cts/external/vulkan-docs/src/xml/
H A Dgenerate-core-block.rb15 file = File.open("vk.xml")
99 File.open('vk.xml', 'w') do |out|
/third_party/vk-gl-cts/external/amber/src/tools/
H A Dcopyright.py107 open(file, 'a').write(copyright + licensed)
122 with open(file) as contents:
/third_party/skia/third_party/externals/brotli/python/
H A Dbro.py125 with open(options.infile, 'rb') as infile:
137 outfile = open(options.outfile, 'wb')
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
H A Dpshints.h88 * - Open a new hint recording session by calling the 'open' method.
322 * open ::
323 * The function to open a recording session.
344 T1_Hints_OpenFunc open; member
375 * - Open a new hint recording session by calling the 'open' method.
635 * open ::
636 * The function to open a recording session.
657 T2_Hints_OpenFunc open; member
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dchktrcmp.py62 for src_line in open( src_pathname, 'r' ):
82 for hdr_line in open( f, 'r' ):
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Drun-tests.py41 f = open (filename, encoding='utf8')
66 with open (fontfile, 'rb') as ff:
/third_party/skia/third_party/externals/sfntly/cpp/tools/
H A Dgenerate_font_list_cc.py54 doc = minidom.parseString(open(xml_path, 'r').read())
108 h_file = open(h_file_name, 'w')
/third_party/python/Lib/xml/etree/
H A DElementInclude.py89 with open(href, 'rb') as file:
94 with open(href, 'r', encoding=encoding) as file:
/third_party/python/Lib/distutils/command/
H A Dbuild_scripts.py72 # Always open the file, but ignore failures in dry-run mode --
76 f = open(script, "rb")
129 with open(outfile, "wb") as outf:
/third_party/skia/tools/rebaseline/
H A Dtoggle_legacy_flag.py69 with open(config_file) as f:
87 with open(config_file, 'w') as f:
/third_party/skia/tools/skottie-wasm-perf/
H A Dparse_perf_csvs.py27 with open(csv_file, 'rb') as f:
81 with open(output_csv, 'w') as f:
/third_party/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/vixl/tools/
H A Dgenerate_tests.py712 with open(template_file, "r") as f:
766 with open(
/third_party/python/Lib/test/test_tools/
H A Dtest_pathfix.py31 with open(filename, 'w', encoding='utf8') as f:
47 with open(filename, 'r', encoding='utf8') as f:
/third_party/python/Lib/zoneinfo/
H A D_tzpath.py110 This may attempt to open a large number of files, since the best way to
111 determine if a given file on the time zone search path is to open it
121 with resources.files("tzdata").joinpath("zones").open("r") as f:
131 with open(fpath, "rb") as f:
/third_party/skia/gn/
H A Dcompile_sksl_tests.py19 with open(sys.argv[4], 'r') as reader:
44 open(path, 'wb').close()
/third_party/skia/infra/bots/
H A Dzip_utils.py53 with open(filepath, 'rb') as f:
75 with open(dst_path, 'wb') as f:
/third_party/rust/crates/nix/test/
H A Dtest_dir.rs24 let mut dir = Dir::open(tmp.path(), flags(), Mode::empty()).unwrap(); in read()
44 let mut dir = Dir::open(tmp.path(), flags(), Mode::empty()).unwrap(); in rewind()
/third_party/vk-gl-cts/scripts/
H A Dconvert_case_list_to_xml.py72 lines = open(packageName + ".cases").readlines()
95 open(packageName + "-cases.xml", "wt").write(xml)
/third_party/zlib/contrib/iostream/
H A Dzfstream.h15 gzfilebuf *open( const char *name, int io_mode );
55 void open( const char *name, int io_mode );
/kernel/linux/linux-5.10/drivers/media/dvb-core/
H A Ddvb_ca_en50221.c137 /* Flag indicating if the CA device is open */
138 unsigned int open:1; member
240 slot_status = ca->pub->poll_slot_status(ca->pub, slot, ca->open); in dvb_ca_en50221_check_camstatus()
1006 if (ca->open) in dvb_ca_en50221_frda_irq()
1073 if (ca->open) { in dvb_ca_en50221_thread_update_delay()
1260 if (!ca->open) in dvb_ca_en50221_thread_state_machine()
1266 if (!ca->open) in dvb_ca_en50221_thread_state_machine()
1701 * Implementation of file open syscall.
1743 * because ca->open == 0. Data is not read in in dvb_ca_en50221_io_open()
1751 ca->open in dvb_ca_en50221_io_open()
[all...]
/kernel/linux/linux-5.10/fs/
H A Dopen.c3 * linux/fs/open.c
765 int (*open)(struct inode *, struct file *)) in do_dentry_open()
812 /* normally all 3 are set; ->open() can clear them if needed */ in do_dentry_open()
814 if (!open) in do_dentry_open()
815 open = f->f_op->open; in do_dentry_open()
816 if (open) { in do_dentry_open()
817 error = open(inode, f); in do_dentry_open()
836 /* NB: we're sure to have correct a_ops only after f_op->open */ in do_dentry_open()
871 * @open
[all...]
/kernel/linux/linux-6.6/fs/
H A Dopen.c3 * linux/fs/open.c
875 int (*open)(struct inode *, struct file *)) in do_dentry_open()
924 /* normally all 3 are set; ->open() can clear them if needed */ in do_dentry_open()
926 if (!open) in do_dentry_open()
927 open = f->f_op->open; in do_dentry_open()
928 if (open) { in do_dentry_open()
929 error = open(inode, f); in do_dentry_open()
1005 * @open: open callbac
[all...]

Completed in 13 milliseconds

1...<<41424344454647484950>>...396