Home
last modified time | relevance | path

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

/dports/lang/python37/Python-3.7.12/Modules/
H A Dgetpath.c139 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
168 if (_Py_wstat(filename, &buf) != 0) { in isfile()
201 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
219 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python311/Python-3.11.0a3/Include/internal/
H A Dpycore_fileutils.h43 _Py_wstat(const wchar_t *, struct stat *);
/dports/databases/py-gdbm/Python-3.8.12/Modules/
H A Dgetpath.c145 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
176 if (_Py_wstat(filename, &buf) != 0) { in isfile()
210 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
228 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python-tools/Python-3.8.12/Modules/
H A Dgetpath.c145 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
176 if (_Py_wstat(filename, &buf) != 0) { in isfile()
210 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
228 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python38/Python-3.8.12/Modules/
H A Dgetpath.c145 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
176 if (_Py_wstat(filename, &buf) != 0) { in isfile()
210 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
228 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/databases/py-sqlite3/Python-3.8.12/Modules/
H A Dgetpath.c145 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
176 if (_Py_wstat(filename, &buf) != 0) { in isfile()
210 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
228 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Modules/
H A Dgetpath.c145 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
176 if (_Py_wstat(filename, &buf) != 0) { in isfile()
210 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
228 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python310/Python-3.10.1/Modules/
H A Dgetpath.c154 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
185 if (_Py_wstat(filename, &buf) != 0) { in isfile()
200 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
218 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python39/Python-3.9.9/Modules/
H A Dgetpath.c154 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
185 if (_Py_wstat(filename, &buf) != 0) { in isfile()
200 if (_Py_wstat(filename, &buf) != 0) { in isxfile()
218 if (_Py_wstat(filename, &buf) != 0) { in isdir()
/dports/lang/python311/Python-3.11.0a3/Modules/
H A Dgetpath.c181 r = (_Py_wstat(path, &st) == 0) && S_ISDIR(st.st_mode) ? Py_True : Py_False; in getpath_isdir()
207 r = (_Py_wstat(path, &st) == 0) && S_ISREG(st.st_mode) ? Py_True : Py_False; in getpath_isfile()
238 r = (_Py_wstat(path, &st) == 0) && in getpath_isxfile()
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dfileutils.c1212 _Py_wstat(const wchar_t* path, struct stat *buf) in _Py_wstat() function
1255 err = _Py_wstat(wpath, statbuf); in _Py_stat()