Home
last modified time | relevance | path

Searched refs:DirEntry (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Modules/
Dposixmodule.c11598 } DirEntry; typedef
11601 DirEntry_dealloc(DirEntry *entry) in DirEntry_dealloc()
11612 DirEntry_test_mode(DirEntry *self, int follow_symlinks, unsigned short mode_bits);
11621 os_DirEntry_is_symlink_impl(DirEntry *self) in os_DirEntry_is_symlink_impl()
11639 DirEntry_fetch_stat(DirEntry *self, int follow_symlinks) in DirEntry_fetch_stat()
11679 DirEntry_get_lstat(DirEntry *self) in DirEntry_get_lstat()
11701 os_DirEntry_stat_impl(DirEntry *self, int follow_symlinks) in os_DirEntry_stat_impl()
11723 DirEntry_test_mode(DirEntry *self, int follow_symlinks, unsigned short mode_bits) in DirEntry_test_mode()
11809 os_DirEntry_is_dir_impl(DirEntry *self, int follow_symlinks) in os_DirEntry_is_dir_impl()
11824 os_DirEntry_is_file_impl(DirEntry *self, int follow_symlinks) in os_DirEntry_is_file_impl()
[all …]
/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h5784 os_DirEntry_is_symlink_impl(DirEntry *self);
5787 os_DirEntry_is_symlink(DirEntry *self, PyObject *Py_UNUSED(ignored)) in os_DirEntry_is_symlink()
5812 os_DirEntry_stat_impl(DirEntry *self, int follow_symlinks);
5815 os_DirEntry_stat(DirEntry *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_stat()
5842 os_DirEntry_is_dir_impl(DirEntry *self, int follow_symlinks);
5845 os_DirEntry_is_dir(DirEntry *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_is_dir()
5877 os_DirEntry_is_file_impl(DirEntry *self, int follow_symlinks);
5880 os_DirEntry_is_file(DirEntry *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in os_DirEntry_is_file()
5912 os_DirEntry_inode_impl(DirEntry *self);
5915 os_DirEntry_inode(DirEntry *self, PyObject *Py_UNUSED(ignored)) in os_DirEntry_inode()
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a3.rst124 Expose the DirEntry type as os.DirEntry. Code patch by Jelle Zijlstra.
D3.6.0a2.rst218 Add os.PathLike support to DirEntry (part of PEP 519). Initial patch by
D3.7.1rc1.rst1350 is_file and similar methods. DirEntry.is_dir can also throw this exception
D3.7.0a1.rst3224 os.stat() and os.DirEntry.inode() now convert inode (st_ino) using unsigned
/external/python/cpython3/Doc/library/
Dos.rst2122 Return an iterator of :class:`os.DirEntry` objects corresponding to the
2129 attribute information, because :class:`os.DirEntry` objects expose this
2131 All :class:`os.DirEntry` methods may perform a system call, but
2132 :func:`~os.DirEntry.is_dir` and :func:`~os.DirEntry.is_file` usually only
2133 require a system call for symbolic links; :func:`os.DirEntry.stat`
2139 the type of the :attr:`~os.DirEntry.name` and :attr:`~os.DirEntry.path`
2140 attributes of each :class:`os.DirEntry` will be ``bytes``; in all other
2196 .. class:: DirEntry
2203 is made, the ``os.DirEntry`` object will cache the result.
2205 ``os.DirEntry`` instances are not intended to be stored in long-lived data
[all …]
/external/clang/lib/Basic/
DVirtualFileSystem.cpp1494 for (const std::unique_ptr<Entry> &DirEntry : in lookupPath() local
1496 ErrorOr<Entry *> Result = lookupPath(Start, End, DirEntry.get()); in lookupPath()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst463 ``'.'``. The :meth:`entry.is_file() <os.DirEntry.is_file>` call will generally
1483 :class:`~os.DirEntry` objects has been added. If possible, :func:`~os.scandir`
D3.6.rst429 classes in the standard library. The :class:`os.DirEntry` class
/external/python/cpython3/Lib/test/
Dtest_os.py3392 self.assertIsInstance(entry, os.DirEntry)