Home
last modified time | relevance | path

Searched refs:open (Results 2126 - 2150 of 8207) sorted by relevance

1...<<81828384858687888990>>...329

/third_party/EGL/api/
H A Dgenheaders.py602 reg.dumpReg(filehandle = open('regdump.txt','w'))
606 errWarn = open(errFilename,'w')
609 diag = open(diagFilename, 'w')
/third_party/curl/lib/
H A Dfile.c79 # define open_readonly(p,f) open((p),(f),(0))
81 # define open_readonly(p,f) open((p),(f))
244 failf(data, "Couldn't open file %s", data->state.up.path); in file_connect()
320 fd = open(file->path, mode, data->set.new_file_perms); in file_upload()
322 failf(data, "Can't open %s for writing", file->path); in file_upload()
/third_party/PyYAML/tests/lib/
H A Dtest_constructor.py260 with open(data_filename, 'rb') as file:
264 with open(code_filename, 'rb') as file:
289 with open(data_filename, 'rb') as file:
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DIcuTextWriter.java89 // TODO: Replace with "open(root, out)" once happy with differences (it adds a blank line). in writeTo()
131 open(path.getSegment(depth - 1), out); in openNextPath()
135 private void open(String label, PrintWriter out) { in open() method in IcuTextWriter
243 open("", out); in appendValues()
/third_party/mesa3d/src/drm-shim/
H A Ddrm_shim.c74 REAL_FUNCTION_POINTER(open); variable
215 GET_FUNCTION_POINTER(open); in init_shim()
275 /* Intercepts open(render_node_path) to redirect it to the simulator. */
276 PUBLIC int open(const char *path, int flags, ...) in open() function
294 PUBLIC int open64(const char*, int, ...) __attribute__((alias("open")));
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dprogress.py199 with open(self.options.ci_test_completion, "a") as f:
371 self.outfile = open(junitout, "wb")
493 with open(self.options.json_test_results, "w") as f:
/third_party/ntfs-3g/libfuse-lite/
H A Dfusermount.c176 fprintf(stderr, "%s: failed to open %s: %s\n", progname, mtab, in count_fuse_fs()
487 *currdir_fd = open(".", O_RDONLY); in check_perm()
489 fprintf(stderr, "%s: failed to open current directory: %s\n", in check_perm()
521 *mountpoint_fd = open(mnt, O_WRONLY); in check_perm()
523 fprintf(stderr, "%s: failed to open %s: %s\n", progname, mnt, in check_perm()
558 fd = open(dev, O_RDWR); in try_open()
572 fprintf(stderr, "%s: failed to open %s: %s\n", progname, dev, in try_open()
/third_party/libfuse/example/
H A Dpassthrough_fh.c364 fd = open(path, fi->flags, mode); in xmp_create()
376 fd = open(path, fi->flags); in xmp_open()
462 /* This is called from every close on an open file, so call the in xmp_flush()
464 called multiple times for an open file, this must not really in xmp_flush()
629 .open = xmp_open,
/third_party/libfuse/lib/
H A Dmount.c342 int fd = open("/dev/null", O_RDONLY); in setup_auto_unmount()
403 int fd = open("/dev/null", O_RDONLY); in fuse_mount_fusermount()
471 fd = open(devname, O_RDWR | O_CLOEXEC); in fuse_mount_sys()
476 fuse_log(FUSE_LOG_ERR, "fuse: failed to open %s: %s\n", in fuse_mount_sys()
/third_party/node/deps/v8/
H A DPRESUBMIT.py197 with open(self._path) as f:
464 with open(f.LocalPath()) as j:
516 with open(f.LocalPath()) as fh:
/third_party/musl/libc-test/src/functionalext/unittest/
H A Dunit_test_ldso_dynlink.c336 fd = open(path, O_RDWR); in dynlink_test_0220()
390 int fd = open(path, O_RDWR); in dynlink_test_0250()
424 int fd = open("/system/lib/libutils.z.so", O_RDONLY|O_CLOEXEC); in dynlink_test_0260()
/third_party/libabigail/src/
H A Dabg-elf-reader.cc14 #include <fcntl.h> /* For open(3) */
193 // dwarf_getalt doesn't exist yet, so let's open code its in find_alt_dwarf_debug_info()
227 // open it and read it. in find_alt_dwarf_debug_info()
228 int fd = open(alt_file_path.c_str(), O_RDONLY); in find_alt_dwarf_debug_info()
298 /// Setup the necessary plumbing to open the ELF file and find all
326 // we've just cracked open. in crack_open_elf_file()
362 // First let's see if the ELF file that was cracked open does have in locate_dwarf_debug_info()
409 if ((fd = open(file_path.c_str(), O_RDONLY)) == -1) in locate_alt_ctf_debug_info()
961 int fd = open(path.c_str(), O_RDONLY); in get_type_of_elf_file()
/third_party/python/Lib/
H A Dtelnetlib.py149 server. The instance is initially not connected; the open()
221 self.open(host, port, timeout)
223 def open(self, host, port=0, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): member in Telnet
237 sys.audit("telnetlib.Telnet.open", self, host, port)
675 tn.open(host, port, timeout=0.5)
H A Dsunau.py39 f = sunau.open(file, 'r')
40 where file is either the name of a file or an open file pointer.
41 The open file pointer must have methods read(), seek(), and close().
72 f = sunau.open(file, 'w')
73 where file is either the name of a file or an open file pointer.
74 The open file pointer must have methods write(), tell(), seek(), and
165 f = builtins.open(f, 'rb')
317 f = builtins.open(f, 'wb')
522 def open(f, mode=None): function
H A Dwave.py6 f = wave.open(file, 'r')
7 where file is either the name of a file or an open file pointer.
8 The open file pointer must have methods read(), seek(), and close().
39 f = wave.open(file, 'w')
40 where file is either the name of a file or an open file pointer.
41 The open file pointer must have methods write(), tell(), seek(), and
80 __all__ = ["open", "Error", "Wave_read", "Wave_write"]
219 _file -- the open file with methods read(), close(), and seek()
279 f = builtins.open(f, 'rb')
281 # else, assume it is an open fil
624 def open(f, mode=None): global() function
[all...]
/third_party/python/Lib/test/
H A D_test_eintr.py321 # block when trying to open it for writing.
347 fp = open(path, 'w')
353 self._test_open("fp = open(path, 'r')\nfp.close()",
357 fd = os.open(path, os.O_WRONLY)
363 self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)",
493 "with open('%s', 'wb') as f:" % os_helper.TESTFN,
499 with open(os_helper.TESTFN, 'wb') as f:
/third_party/openGLES/xml/
H A Dgenglvnd.py93 reg.dumpReg(filehandle = open('regdump.txt','w'))
593 errWarn = open(errFilename,'w')
596 diag = open(diagFilename, 'w')
H A Dgenheaders.py560 reg.dumpReg(filehandle = open('regdump.txt','w'))
564 errWarn = open(errFilename,'w')
567 diag = open(diagFilename, 'w')
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Dhb_test_tools.py438 return open (f)
456 m = open (os.path.join (s, "MANIFEST"))
482 m = open (ms, "w")
/third_party/skia/third_party/externals/opengl-registry/xml/
H A Dgenglvnd.py104 reg.dumpReg(filehandle = open('regdump.txt','w'))
623 errWarn = open(errFilename,'w')
626 diag = open(diagFilename, 'w')
H A Dgenheaders.py104 reg.dumpReg(filehandle = open('regdump.txt','w'))
565 errWarn = open(errFilename,'w')
568 diag = open(diagFilename, 'w')
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dbloat.py399 nmfile = open(opts.nmpath, 'r')
412 objdumpfile = open(opts.objdumppath, 'r')
415 nmfile = open(opts.nmpath, 'r')
/third_party/toybox/toys/pending/
H A Dsyslogd.c160 * if -K then open only /dev/kmsg in parse_config_file()
162 * thus no need to open config either. in parse_config_file()
174 * open config either so just return. in parse_config_file()
187 perror_exit("can't open '%s'", TT.config_file); in parse_config_file()
222 * Can't open config file or support is not enabled in parse_config_file()
235 // open every log file in list.
269 } else tfd->logfd = open(tfd->filename, O_CREAT | O_WRONLY | O_APPEND, 0666); in open_logfiles()
272 tfd->logfd = open(tfd->filename, O_APPEND); in open_logfiles()
301 tf->logfd = open(tf->filename, O_CREAT | O_WRONLY | O_APPEND, 0666); in write_rotate()
303 perror_msg("can't open in write_rotate()
[all...]
/third_party/skia/third_party/externals/egl-registry/api/
H A Dgenheaders.py104 reg.dumpReg(filehandle = open('regdump.txt','w'))
605 errWarn = open(errFilename,'w')
608 diag = open(diagFilename, 'w')
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
H A Dp2p-nfc.py42 with open(summary_file, 'a') as f:
48 with open(success_file, 'a') as f:
612 if not clf.open("usb"):
613 print("Could not open connection with an NFC device")

Completed in 30 milliseconds

1...<<81828384858687888990>>...329