/third_party/python/Lib/ |
H A D | telnetlib.py | 149 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 D | sunau.py | 39 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 D | wave.py | 6 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.py | 321 # 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 D | genglvnd.py | 93 reg.dumpReg(filehandle = open('regdump.txt','w')) 593 errWarn = open(errFilename,'w') 596 diag = open(diagFilename, 'w')
|
H A D | genheaders.py | 560 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 D | hb_test_tools.py | 438 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 D | genglvnd.py | 104 reg.dumpReg(filehandle = open('regdump.txt','w')) 623 errWarn = open(errFilename,'w') 626 diag = open(diagFilename, 'w')
|
H A D | genheaders.py | 104 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 D | bloat.py | 399 nmfile = open(opts.nmpath, 'r') 412 objdumpfile = open(opts.objdumppath, 'r') 415 nmfile = open(opts.nmpath, 'r')
|
/third_party/toybox/toys/pending/ |
H A D | syslogd.c | 160 * 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 D | genheaders.py | 104 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 D | p2p-nfc.py | 42 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")
|
H A D | wps-nfc.py | 35 with open(summary_file, 'a') as f: 41 with open(success_file, 'a') as f: 484 if not clf.open("usb"): 485 print("Could not open connection with an NFC device")
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | p2p-nfc.py | 42 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")
|
H A D | wps-nfc.py | 35 with open(summary_file, 'a') as f: 41 with open(success_file, 'a') as f: 484 if not clf.open("usb"): 485 print("Could not open connection with an NFC device")
|
/third_party/elfutils/tests/ |
H A D | attr-integrate-skel.c | 38 int fd = open (argv[i], O_RDONLY); in main()
|
H A D | dwfl-report-offline-memory.c | 63 int fd = open (fname, O_RDONLY); in main() 65 error (-1, 0, "can't open file %s: %s", fname, strerror (errno)); in main()
|
H A D | get-units-invalid.c | 38 int fd = open (argv[i], O_RDONLY); in main()
|
H A D | get-files.c | 37 int fd = open (argv[cnt], O_RDONLY); in main()
|
H A D | get-units-split.c | 38 int fd = open (argv[i], O_RDONLY); in main()
|
H A D | show-abbrev.c | 34 int fd = open (argv[cnt], O_RDONLY); in main()
|
H A D | arsymtest.c | 40 fd = open (argv[1], O_RDONLY); in main() 43 printf ("Cannot open input file: %m"); in main() 51 printf ("Cannot open output file: %m"); in main()
|
H A D | arls.c | 50 int fd = open (fname, O_RDONLY); in handle() 53 printf ("cannot open '%s': %m\n", fname); in handle()
|
H A D | dwelfgnucompressed.c | 47 int fd = open (argv[cnt], O_RDONLY); in main()
|