HomeSort by relevance Sort by last modified time
    Searched defs:follow_symlinks (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Modules/clinic/
posixmodule.c.h 6 "stat($module, /, path, *, dir_fd=None, follow_symlinks=True)\n"
18 " follow_symlinks\n"
23 "dir_fd and follow_symlinks may not be implemented\n"
27 "It\'s an error to use dir_fd or follow_symlinks when specifying path as\n"
34 os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks);
40 static const char * const _keywords[] = {"path", "dir_fd", "follow_symlinks", NULL};
44 int follow_symlinks = 1; local
47 path_converter, &path, FSTATAT_DIR_FD_CONVERTER, &dir_fd, &follow_symlinks)) {
50 return_value = os_stat_impl(module, &path, dir_fd, follow_symlinks);
66 "Equivalent to stat(path, follow_symlinks=False).")
145 int follow_symlinks = 1; local
342 int follow_symlinks = 1; local
464 int follow_symlinks = 1; local
698 int follow_symlinks = 1; local
867 int follow_symlinks = 1; local
1592 int follow_symlinks = 1; local
5257 int follow_symlinks = 1; local
5307 int follow_symlinks = 1; local
5358 int follow_symlinks = 1; local
5404 int follow_symlinks = 1; local
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 1092 follow_symlinks_specified(const char *function_name, int follow_symlinks)
1094 if (follow_symlinks)
1097 argument_unavailable_error(function_name, "follow_symlinks");
1131 int follow_symlinks)
1133 if ((fd > 0) && (!follow_symlinks)) {
1135 "%s: cannot use fd and follow_symlinks together",
1144 int follow_symlinks)
1146 if ((dir_fd != DEFAULT_DIR_FD) && (!follow_symlinks)) {
1148 "%s: cannot use dir_fd and follow_symlinks together",
2442 int follow_symlinks = 0; local
    [all...]

Completed in 179 milliseconds