Lines Matching refs:DirEntry
13602 class os.DirEntry "DirEntry *" "DirEntryType"
13623 } DirEntry;
13626 DirEntry_dealloc(DirEntry *entry)
13640 DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self,
13644 os.DirEntry.is_symlink -> bool
13652 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class)
13670 DirEntry_fetch_stat(PyObject *module, DirEntry *self, int follow_symlinks)
13733 DirEntry_get_lstat(PyTypeObject *defining_class, DirEntry *self)
13748 os.DirEntry.stat
13758 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class,
13786 DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self,
13865 os.DirEntry.is_dir -> bool
13875 os_DirEntry_is_dir_impl(DirEntry *self, PyTypeObject *defining_class,
13883 os.DirEntry.is_file -> bool
13893 os_DirEntry_is_file_impl(DirEntry *self, PyTypeObject *defining_class,
13901 os.DirEntry.inode
13907 os_DirEntry_inode_impl(DirEntry *self)
13939 "DirEntry.win32_file_index is larger than unsigned long long");
13943 "DirEntry.d_ino is larger than unsigned long long");
13949 DirEntry_repr(DirEntry *self)
13951 return PyUnicode_FromFormat("<DirEntry %R>", self->name);
13955 os.DirEntry.__fspath__
13961 os_DirEntry___fspath___impl(DirEntry *self)
13969 {"name", T_OBJECT_EX, offsetof(DirEntry, name), READONLY,
13971 {"path", T_OBJECT_EX, offsetof(DirEntry, path), READONLY,
13999 MODNAME ".DirEntry",
14000 sizeof(DirEntry),
14045 DirEntry *entry;
14051 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType);
14135 DirEntry *entry;
14139 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType);
14446 Return an iterator of DirEntry objects for given path.
14449 is bytes, the names of yielded DirEntry objects will also be bytes; in
15967 PyModule_AddObject(m, "DirEntry", DirEntryType);