Home
last modified time | relevance | path

Searched refs:DirEntryType (Results 1 – 25 of 25) sorted by relevance

/dports/comms/acfax/acfax/
H A DDirectory.c99 DirEntryType(de) = F_TYPE_DIR;
102 DirEntryType(de) = F_TYPE_FILE;
105 DirEntryType(de) = F_TYPE_CHAR_SPECIAL;
108 DirEntryType(de) = F_TYPE_BLOCK_SPECIAL;
111 DirEntryType(de) = F_TYPE_SYM_LINK;
114 DirEntryType(de) = F_TYPE_SOCKET;
118 DirEntryType(de) = F_TYPE_FIFO;
122 DirEntryType(de) = orig_file_type;
H A DDirectory.h126 #define DirEntryType(fi) ((fi)->file_type) macro
132 #define DirEntryIsDir(fi) (FTypeIsDir(DirEntryType(fi)))
133 #define DirEntryIsFile(fi) (FTypeIsFile(DirEntryType(fi)))
134 #define DirEntryIsCharSpecial(fi) (FTypeIsCharSpecial(DirEntryType(fi)))
135 #define DirEntryIsBlockSpecial(fi) (FTypeIsBlockSpecial(DirEntryType(fi)))
136 #define DirEntryIsSymLink(fi) (FTypeIsSymLink(DirEntryType(fi)))
137 #define DirEntryIsSocket(fi) (FTypeIsSocket(DirEntryType(fi)))
138 #define DirEntryIsFifo(fi) (FTypeIsFifo(DirEntryType(fi)))
/dports/x11-toolkits/mowitz/Mowitz-0.2.1/examples/
H A DDirectory.h121 #define DirEntryType(fi) ((fi)->file_type) macro
127 #define DirEntryIsDir(fi) (FTypeIsDir(DirEntryType(fi)))
128 #define DirEntryIsFile(fi) (FTypeIsFile(DirEntryType(fi)))
129 #define DirEntryIsCharSpecial(fi) (FTypeIsCharSpecial(DirEntryType(fi)))
130 #define DirEntryIsBlockSpecial(fi) (FTypeIsBlockSpecial(DirEntryType(fi)))
131 #define DirEntryIsSymLink(fi) (FTypeIsSymLink(DirEntryType(fi)))
132 #define DirEntryIsSocket(fi) (FTypeIsSocket(DirEntryType(fi)))
133 #define DirEntryIsFifo(fi) (FTypeIsFifo(DirEntryType(fi)))
H A DDirectory.c74 if (S_ISDIR(_lstats.st_mode)) DirEntryType(de) = F_TYPE_DIR; in DirectoryReadNextEntry()
75 else if (S_ISREG(_lstats.st_mode)) DirEntryType(de) = F_TYPE_FILE; in DirectoryReadNextEntry()
76 else if (S_ISCHR(_lstats.st_mode)) DirEntryType(de) = F_TYPE_CHAR_SPECIAL; in DirectoryReadNextEntry()
77 else if (S_ISBLK(_lstats.st_mode)) DirEntryType(de) = F_TYPE_BLOCK_SPECIAL; in DirectoryReadNextEntry()
78 else if (S_ISFIFO(_lstats.st_mode)) DirEntryType(de) = F_TYPE_FIFO; in DirectoryReadNextEntry()
79 else DirEntryType(de) = F_TYPE_UNKNOWN; in DirectoryReadNextEntry()
H A DTreeFSel.c405 switch(DirEntryType(&entry)) { in NewDir()
498 switch(DirEntryType(&entry)) { in GetFiles()
/dports/net/rclone/rclone-1.57.0/fs/
H A Ddirentries.go73 func DirEntryType(d DirEntry) string { func
95 typeA := DirEntryType(a)
96 typeB := DirEntryType(b)
/dports/net/rclone/rclone-1.57.0/fs/march/
H A Dmarch.go329 if srcName == prevName && fs.DirEntryType(prev) == fs.DirEntryType(src) {
330 fs.Logf(src, "Duplicate %s found in source - ignoring", fs.DirEntryType(src))
341 if dstName == prevName && fs.DirEntryType(dst) == fs.DirEntryType(prev) {
342 fs.Logf(dst, "Duplicate %s found in destination - ignoring", fs.DirEntryType(dst))
353 srcType := fs.DirEntryType(src)
354 dstType := fs.DirEntryType(dst)
/dports/lang/spidermonkey60/firefox-60.9.0/third_party/python/scandir/
H A D_scandir.c1314 static PyTypeObject DirEntryType = { variable
1396 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
1476 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
1825 if (PyType_Ready(&DirEntryType) < 0)
1828 PyModule_AddObject(module, "DirEntry", (PyObject *)&DirEntryType);
/dports/sysutils/py-scandir/scandir-1.10.0/
H A D_scandir.c1318 static PyTypeObject DirEntryType = { variable
1400 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
1480 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
1829 if (PyType_Ready(&DirEntryType) < 0)
1832 PyModule_AddObject(module, "DirEntry", (PyObject *)&DirEntryType);
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/python/scandir/
H A D_scandir.c1314 static PyTypeObject DirEntryType = { variable
1396 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
1476 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
1825 if (PyType_Ready(&DirEntryType) < 0)
1828 PyModule_AddObject(module, "DirEntry", (PyObject *)&DirEntryType);
/dports/lang/python310/Python-3.10.1/Modules/
H A Dposixmodule.c975 PyObject *DirEntryType; member
2299 Py_CLEAR(state->DirEntryType); in _posix_clear()
2324 Py_VISIT(state->DirEntryType); in _posix_traverse()
13845 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_find_data() local
13846 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_find_data()
13933 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_posix_info() local
13934 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_posix_info()
15737 if (DirEntryType == NULL) { in posixmodule_exec()
15740 Py_INCREF(DirEntryType); in posixmodule_exec()
15741 PyModule_AddObject(m, "DirEntry", DirEntryType); in posixmodule_exec()
[all …]
/dports/lang/python311/Python-3.11.0a3/Modules/
H A Dposixmodule.c959 PyObject *DirEntryType; member
2283 Py_CLEAR(state->DirEntryType); in _posix_clear()
2308 Py_VISIT(state->DirEntryType); in _posix_traverse()
13862 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_find_data() local
13863 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_find_data()
13950 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_posix_info() local
13951 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_posix_info()
15755 if (DirEntryType == NULL) { in posixmodule_exec()
15758 Py_INCREF(DirEntryType); in posixmodule_exec()
15759 PyModule_AddObject(m, "DirEntry", DirEntryType); in posixmodule_exec()
[all …]
/dports/lang/python39/Python-3.9.9/Modules/
H A Dposixmodule.c934 PyObject *DirEntryType; member
2247 Py_CLEAR(state->DirEntryType); in _posix_clear()
2272 Py_VISIT(state->DirEntryType); in _posix_traverse()
13698 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_find_data() local
13699 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_find_data()
13786 PyObject *DirEntryType = get_posix_state(module)->DirEntryType; in DirEntry_from_posix_info() local
13787 entry = PyObject_New(DirEntry, (PyTypeObject *)DirEntryType); in DirEntry_from_posix_info()
15561 if (DirEntryType == NULL) { in posixmodule_exec()
15564 Py_INCREF(DirEntryType); in posixmodule_exec()
15565 PyModule_AddObject(m, "DirEntry", DirEntryType); in posixmodule_exec()
[all …]
/dports/lang/python37/Python-3.7.12/Modules/
H A Dposixmodule.c12008 static PyTypeObject DirEntryType = { variable
12084 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
12171 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
13620 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
13720 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
13721 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A Dposixmodule.c12964 static PyTypeObject DirEntryType = { variable
13040 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
13127 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
14740 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
14844 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
14845 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/lang/python-tools/Python-3.8.12/Modules/
H A Dposixmodule.c12964 static PyTypeObject DirEntryType = { variable
13040 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
13127 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
14740 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
14844 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
14845 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/lang/python38/Python-3.8.12/Modules/
H A Dposixmodule.c13007 static PyTypeObject DirEntryType = { variable
13083 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
13170 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
14783 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
14887 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
14888 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A Dposixmodule.c12964 static PyTypeObject DirEntryType = { variable
13040 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
13127 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
14740 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
14844 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
14845 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A Dposixmodule.c12964 static PyTypeObject DirEntryType = { variable
13040 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_find_data()
13127 entry = PyObject_New(DirEntry, &DirEntryType); in DirEntry_from_posix_info()
14740 if (PyType_Ready(&DirEntryType) < 0) in INITFUNC()
14844 Py_INCREF((PyObject *) &DirEntryType); in INITFUNC()
14845 PyModule_AddObject(m, "DirEntry", (PyObject *)&DirEntryType); in INITFUNC()
/dports/lang/python39/Python-3.9.9/Tools/c-analyzer/
H A DTODO670 Modules/posixmodule.c:DirEntryType static PyTypeObject DirEntryType
H A Dknown.tsv209 Modules/posixmodule.c - DirEntryType variable static PyTypeObject DirEntryType
/dports/lang/python310/Python-3.10.1/Tools/c-analyzer/
H A DTODO665 Modules/posixmodule.c:DirEntryType static PyTypeObject DirEntryType
/dports/lang/python39/Python-3.9.9/Misc/
H A DNEWS7166 ``DirEntryType`` and ``ScandirIteratorType`` to heap-allocated types.
/dports/lang/python310/Python-3.10.1/Misc/
H A DNEWS10110 ``DirEntryType`` and ``ScandirIteratorType`` to heap-allocated types.
/dports/lang/python311/Python-3.11.0a3/Misc/
H A DNEWS11339 ``DirEntryType`` and ``ScandirIteratorType`` to heap-allocated types.