Lines Matching defs:user

763      * If uid == (uid_t)-1, the user actually passed in ULONG_MAX,
765 * and its siblings. That's not what the user meant! So we
870 * If gid == (gid_t)-1, the user actually passed in ULONG_MAX,
872 * and its siblings. That's not what the user meant! So we
2132 {"st_uid", "user ID of owner"},
2155 {"st_flags", "user defined flags for file"},
2973 routine can be used in a suid/sgid environment to test if the invoking user
5612 as that may confuse the user into believing that
7578 Return the current process's effective user id.
7634 user: str
7637 base group id of the user
7640 Returns a list of groups to which a user belongs.
7644 os_getgrouplist_impl(PyObject *module, const char *user, int basegid)
7650 user: str
7653 base group id of the user
7656 Returns a list of groups to which a user belongs.
7660 os_getgrouplist_impl(PyObject *module, const char *user, gid_t basegid)
7678 * user belongs to.
7693 if (getgrouplist(user, basegid, groups, &ngroups) != -1) {
8030 Return the current process's user id.
8177 Set the current process's user id.
8198 Set the current process's effective user id.
8241 Set the current process's real and effective user ids.
9027 {"user", "user time"},
9029 {"children_user", "user time of children"},
9038 (user, system, children_user, children_system, elapsed),\n\
9039 or via the attributes user, system, children_user, children_system,\n\
9058 build_times_result(PyObject *module, double user, double system,
9077 SET(0, user);
9109 FILETIME create, exit, kernel, user;
9112 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
9119 (double)(user.dwHighDateTime*429.4967296 +
9120 user.dwLowDateTime*1e-7),
12815 Set the current process's real, effective, and saved user ids.
12856 Return a tuple of the current process's real, effective, and saved user ids.