/external/vulkan-validation-layers/ |
reg.py | 175 # dumpReg(maxlen, filehandle) - diagnostic to dump the dictionaries 363 def dumpReg(self, maxlen = 40, filehandle = sys.stdout): 365 write('***************************************', file=filehandle) 366 write(' ** Dumping Registry contents **', file=filehandle) 367 write('***************************************', file=filehandle) 368 write('// Types', file=filehandle) 371 write(' Type', name, '->', etree.tostring(tobj.elem)[0:maxlen], file=filehandle) 372 write('// Groups', file=filehandle) 375 write(' Group', name, '->', etree.tostring(gobj.elem)[0:maxlen], file=filehandle) 376 write('// Enums', file=filehandle) [all...] |
genvk.py | 113 reg.dumpReg(filehandle = open('regdump.txt','w'))
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
shuffler.py | 154 filehandle = cloudstorage.open(full_filename, mode="w") 155 with output_writers.GCSRecordsPool(filehandle, ctx=ctx) as pool: 160 filehandle.close() 465 # flush each pool to minimize the size of each filehandle before we 505 for filehandle in self._filehandles: 506 filenames.append(filehandle.name) 507 filehandle.close() 532 # filehandle, we rely on a member variable instead of using context for 536 filehandle = self._filehandles[file_index] 537 pool = output_writers.GCSRecordsPool(filehandle=filehandle, ctx=ctx [all...] |
output_writers.py | 423 filehandle, 427 """Requires the filehandle of an open GCS file to write to.""" 429 self._filehandle = filehandle 433 """Uses the filehandle to the file in GCS to write to it.""" [all...] |
/frameworks/native/opengl/tools/glgen2/registry/ |
reg.py | 662 # dumpReg(maxlen, filehandle) - diagnostic to dump the dictionaries [all...] |
genheaders.py | 111 reg.dumpReg(filehandle = open('regdump.txt','w'))
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/ |
diagnose.py | 191 filehandle = tempfile.NamedTemporaryFile() 192 filename = filehandle.name
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/ |
test_jwt.py | 270 (filehandle, filename) = tempfile.mkstemp() 271 os.close(filehandle)
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/ |
test_soup.py | 78 filehandle = tempfile.NamedTemporaryFile() 79 filename = filehandle.name 86 filehandle.close()
|
/prebuilts/go/darwin-x86/src/syscall/ |
zsyscall_windows.go | 512 func CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error) { 513 r0, _, e1 := Syscall6(procCreateIoCompletionPort.Addr(), 4, uintptr(filehandle), uintptr(cphandle), uintptr(key), uintptr(threadcnt), 0, 0) 727 func GetFileType(filehandle Handle) (n uint32, err error) { 728 r0, _, e1 := Syscall(procGetFileType.Addr(), 1, uintptr(filehandle), 0, 0) [all...] |
syscall_windows.go | 169 //sys CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error) 185 //sys GetFileType(filehandle Handle) (n uint32, err error) [all...] |
/prebuilts/go/linux-x86/src/syscall/ |
zsyscall_windows.go | 512 func CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error) { 513 r0, _, e1 := Syscall6(procCreateIoCompletionPort.Addr(), 4, uintptr(filehandle), uintptr(cphandle), uintptr(key), uintptr(threadcnt), 0, 0) 727 func GetFileType(filehandle Handle) (n uint32, err error) { 728 r0, _, e1 := Syscall(procGetFileType.Addr(), 1, uintptr(filehandle), 0, 0) [all...] |
syscall_windows.go | 169 //sys CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint32, threadcnt uint32) (handle Handle, err error) 185 //sys GetFileType(filehandle Handle) (n uint32, err error) [all...] |