Home
last modified time | relevance | path

Searched refs:effective_ids (Results 1 - 4 of 4) sorted by relevance

/third_party/python/Modules/
H A Dposixmodule.c2956 effective_ids: bool = False
2968 dir_fd, effective_ids, and follow_symlinks may not be implemented
2980 int effective_ids, int follow_symlinks) in os_access_impl()
2999 if (effective_ids) { in os_access_impl()
3000 argument_unavailable_error("access", "effective_ids"); in os_access_impl()
3027 effective_ids || in os_access_impl()
3034 if (effective_ids) in os_access_impl()
3055 if (effective_ids) { in os_access_impl()
3056 argument_unavailable_error("access", "effective_ids"); in os_access_impl()
2979 os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd, int effective_ids, int follow_symlinks) os_access_impl() argument
/third_party/python/Modules/clinic/
H A Dposixmodule.c.h130 "access($module, /, path, mode, *, dir_fd=None, effective_ids=False,\n"
145 " effective_ids\n"
153 "dir_fd, effective_ids, and follow_symlinks may not be implemented\n"
166 int effective_ids, int follow_symlinks);
172 static const char * const _keywords[] = {"path", "mode", "dir_fd", "effective_ids", "follow_symlinks", NULL}; in os_access()
179 int effective_ids = 0; in os_access() local
206 effective_ids = PyObject_IsTrue(args[3]); in os_access()
207 if (effective_ids < 0) { in os_access()
219 _return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks); in os_access()
/third_party/python/Lib/test/
H A Dtest_posix.py2002 with self.assertRaisesRegex(NotImplementedError, "effective_ids unavailable"):
2003 os.access("file", os.R_OK, effective_ids=True)
H A Dtest_zipfile.py1311 # effective_ids unavailable on windows
1313 effective_ids=os.access in os.supports_effective_ids):

Completed in 37 milliseconds