Home
last modified time | relevance | path

Searched refs:supports_dir_fd (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_posix.py1345 … @unittest.skipUnless(os.access in os.supports_dir_fd, "test needs dir_fd support for os.access()")
1350 @unittest.skipUnless(os.chmod in os.supports_dir_fd, "test needs dir_fd support in os.chmod()")
1359 @unittest.skipUnless(hasattr(os, 'chown') and (os.chown in os.supports_dir_fd),
1366 @unittest.skipUnless(os.stat in os.supports_dir_fd, "test needs dir_fd support in os.stat()")
1386 @unittest.skipUnless(os.utime in os.supports_dir_fd, "test needs dir_fd support in os.utime()")
1422 hasattr(os, "link") and os.link in os.supports_dir_fd,
1437 @unittest.skipUnless(os.mkdir in os.supports_dir_fd, "test needs dir_fd support in os.mkdir()")
1445 and (os.mknod in os.supports_dir_fd)
1463 @unittest.skipUnless(os.open in os.supports_dir_fd, "test needs dir_fd support in os.open()")
1476 @unittest.skipUnless(hasattr(os, 'readlink') and (os.readlink in os.supports_dir_fd),
[all …]
Dtest_glob.py43 if {os.open, os.stat} <= os.supports_dir_fd and os.scandir in os.supports_fd:
Dtest_os.py854 @unittest.skipUnless(os.utime in os.supports_dir_fd,
951 if os.utime not in os.supports_dir_fd:
4403 if os.stat in os.supports_dir_fd:
Dtest_shutil.py390 os.supports_dir_fd and
/aosp_15_r20/external/python/pyfakefs/pyfakefs/tests/
Dfake_os_test.py2877 self.os.stat in self.os.supports_dir_fd, os.stat in os.supports_dir_fd
4679 self.os.supports_dir_fd.clear()
4693 self.os.supports_dir_fd.add(self.os.access)
4704 self.os.supports_dir_fd.add(self.os.chmod)
4719 self.os.supports_dir_fd.add(self.os.chown)
4733 self.os.supports_dir_fd.add(self.os.link)
4745 self.os.supports_dir_fd.add(self.os.link)
4757 self.os.supports_dir_fd.add(self.os.symlink)
4771 self.os.supports_dir_fd.add(self.os.readlink)
4779 self.os.supports_dir_fd.add(self.os.stat)
[all …]
/aosp_15_r20/external/python/pyfakefs/pyfakefs/
Dfake_os.py907 if fct not in self.supports_dir_fd:
1318 def supports_dir_fd(self) -> Set[Callable]: member in FakeOsModule
1320 self._supports_dir_fd = self.fake_functions(self.os_module.supports_dir_fd)
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
H A Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/external/python/cpython3/Lib/
Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dos.py125 supports_dir_fd = _set variable
429 if {open, stat} <= supports_dir_fd and {scandir, stat} <= supports_fd:
Dshutil.py686 os.supports_dir_fd and
/aosp_15_r20/external/python/cpython3/Doc/library/
Dos.rst1739 on your platform using :data:`os.supports_dir_fd`. If it's unavailable,
2989 .. data:: supports_dir_fd
3002 for its *dir_fd* parameter, use the ``in`` operator on ``supports_dir_fd``.
3006 os.stat in os.supports_dir_fd
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.3.rst1611 :data:`os.supports_dir_fd` and :data:`os.supports_follows_symlinks`.