Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
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): argument
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
Dshutil.py625 def _rmtree_safe_fd(topfd, path, onerror): argument
627 with os.scandir(topfd) as scandir_it:
649 dirfd = os.open(entry.name, os.O_RDONLY, dir_fd=topfd)
657 os.rmdir(entry.name, dir_fd=topfd)
673 os.unlink(entry.name, dir_fd=topfd)
/external/python/cpython3/Lib/test/
Dtest_os.py1407 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs):
1411 yield (root, dirs, files, topfd)