Lines Matching defs:group_name
111 * group_name The name of the console group to check authorization. The max
118 auth_check_username(char *username, char *group_name)
126 (group_name == NULL) || (group_name[0] == '\0')) {
130 (void) snprintf(authname, len, VNTSD_AUTH_GRPCONS"%s", group_name);
155 * group_name The name of the console group to check authorization
161 auth_check_euid(uid_t euid, char *group_name)
179 return (auth_check_username(username, group_name));
190 * group_name The name of the console group to check authorization
196 auth_check_fd(int sock_fd, char *group_name)
207 rv = auth_check_euid(peer_euid, group_name);