Home
last modified time | relevance | path

Searched refs:topfd (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Lib/
H A Dos.py470 topfd = open(top, O_RDONLY, dir_fd=dir_fd)
473 path.samestat(orig_st, stat(topfd)))):
474 yield from _fwalk(topfd, top, isinstance(top, bytes),
477 close(topfd)
479 def _fwalk(topfd, toppath, isbytes, topdown, onerror, follow_symlinks):
484 scandir_it = scandir(topfd)
508 yield toppath, dirs, nondirs, topfd
514 orig_st = stat(name, dir_fd=topfd, follow_symlinks=False)
519 dirfd = open(name, O_RDONLY, dir_fd=topfd)
533 yield toppath, dirs, nondirs, topfd
[all...]
H A Dshutil.py629 def _rmtree_safe_fd(topfd, path, onerror):
631 with os.scandir(topfd) as scandir_it:
653 dirfd = os.open(entry.name, os.O_RDONLY, dir_fd=topfd)
664 os.rmdir(entry.name, dir_fd=topfd)
681 os.unlink(entry.name, dir_fd=topfd)
/third_party/python/Lib/test/
H A Dtest_os.py1566 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs):
1570 yield (root, dirs, files, topfd)

Completed in 9 milliseconds