Searched refs:topfd (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/ |
D | os.py | 470 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
|
D | shutil.py | 625 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/ |
D | test_os.py | 1407 for broot, bdirs, bfiles, topfd in os.fwalk(os.fsencode(top), *args, **kwargs): 1411 yield (root, dirs, files, topfd)
|