Lines Matching refs:scandir
407 scandir = _wrap_strfunc(os.scandir) variable in _NormalAccessor
489 scandir = parent_path._accessor.scandir
492 return self._select_from(parent_path, is_dir, exists, scandir)
497 def _select_from(self, parent_path, is_dir, exists, scandir): argument
507 def _select_from(self, parent_path, is_dir, exists, scandir): argument
511 for p in self.successor._select_from(path, is_dir, exists, scandir):
523 def _select_from(self, parent_path, is_dir, exists, scandir): argument
526 entries = list(scandir(parent_path))
533 for p in self.successor._select_from(path, is_dir, exists, scandir):
545 def _iterate_directories(self, parent_path, is_dir, scandir): argument
548 entries = list(scandir(parent_path))
552 for p in self._iterate_directories(path, is_dir, scandir):
557 def _select_from(self, parent_path, is_dir, exists, scandir): argument
562 for starting_point in self._iterate_directories(parent_path, is_dir, scandir):
563 for p in successor_select(starting_point, is_dir, exists, scandir):