Home | History | Annotate | Download | only in utils

Lines Matching refs:user

42 /// Represents a system user.
43 class user {
45 /// The name of the user.
48 /// The system-wide identifier of the user.
51 /// The login group identifier for the user.
54 user(const std::string&, const unsigned int, const unsigned int);
60 user current_user(void);
61 user find_user_by_name(const std::string&);
62 user find_user_by_uid(const unsigned int);
63 void set_current_user_for_testing(const user&);
64 void set_mock_users_for_testing(const std::vector< user >&);