Searched refs:posix_do_stat (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | posixmodule.c | 1638 posix_do_stat(PyObject *self, PyObject *args, in posix_do_stat() function 2830 return posix_do_stat(self, args, "et:stat", STAT, "u:stat", win32_wstat); in posix_stat() 2832 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL); in posix_stat() 6336 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL); in posix_lstat() 6339 return posix_do_stat(self, args, "et:lstat", STAT, "u:lstat", win32_wstat); in posix_lstat() 6341 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL); in posix_lstat()
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 2414 posix_do_stat(PyObject *module, const char *function_name, path_t *path, in posix_do_stat() function 2808 return posix_do_stat(module, "stat", path, dir_fd, follow_symlinks); in os_stat_impl() 2832 return posix_do_stat(module, "lstat", path, dir_fd, follow_symlinks); in os_lstat_impl()
|