Lines Matching defs:dir_fd
12 dir_fd = None
44 self.dir_fd = os.open(self.tempdir, os.O_RDONLY | os.O_DIRECTORY)
46 self.dir_fd = None
49 if self.dir_fd is not None:
50 os.close(self.dir_fd)
91 if self.dir_fd is not None:
93 glob.glob(pattern, dir_fd=self.dir_fd, **kwargs), res2)
95 glob.iglob(pattern, dir_fd=self.dir_fd, **kwargs), res2)
97 glob.glob(bpattern, dir_fd=self.dir_fd, **kwargs), bres2)
99 glob.iglob(bpattern, dir_fd=self.dir_fd, **kwargs), bres2)
131 self.assertEqual(glob.glob('', dir_fd=self.dir_fd), [])
132 self.assertEqual(glob.glob(b'', dir_fd=self.dir_fd), [])