Lines Matching refs:UserMgr

182 bool UserMgr::isUserExist(const std::string& userName)  in isUserExist()
197 void UserMgr::throwForUserDoesNotExist(const std::string& userName) in throwForUserDoesNotExist()
206 void UserMgr::checkAndThrowForDisallowedGroupCreation( in checkAndThrowForDisallowedGroupCreation()
220 void UserMgr::throwForUserExists(const std::string& userName) in throwForUserExists()
229 void UserMgr::throwForUserNameConstraints( in throwForUserNameConstraints()
264 void UserMgr::throwForMaxGrpUserCount( in throwForMaxGrpUserCount()
292 void UserMgr::throwForInvalidPrivilege(const std::string& priv) in throwForInvalidPrivilege()
303 void UserMgr::throwForInvalidGroups(const std::vector<std::string>& groupNames) in throwForInvalidGroups()
317 std::vector<std::string> UserMgr::readAllGroupsOnSystem() in readAllGroupsOnSystem()
341 void UserMgr::createUser(std::string userName, in createUser()
390 void UserMgr::deleteUser(std::string userName) in deleteUser()
414 void UserMgr::checkDeleteGroupConstraints(const std::string& groupName) in checkDeleteGroupConstraints()
425 void UserMgr::deleteGroup(std::string groupName) in deleteGroup()
443 void UserMgr::checkCreateGroupConstraints(const std::string& groupName) in checkCreateGroupConstraints()
460 void UserMgr::createGroup(std::string groupName) in createGroup()
476 void UserMgr::renameUser(std::string userName, std::string newUserName) in renameUser()
512 void UserMgr::updateGroupsAndPriv(const std::string& userName, in updateGroupsAndPriv()
567 uint8_t UserMgr::minPasswordLength(uint8_t value) in minPasswordLength()
592 uint8_t UserMgr::rememberOldPasswordTimes(uint8_t value) in rememberOldPasswordTimes()
608 uint16_t UserMgr::maxLoginAttemptBeforeLockout(uint16_t value) in maxLoginAttemptBeforeLockout()
624 uint32_t UserMgr::accountUnlockTimeout(uint32_t value) in accountUnlockTimeout()
640 int UserMgr::getPamModuleConfValue(const std::string& confFile, in getPamModuleConfValue()
681 int UserMgr::setPamModuleConfValue(const std::string& confFile, in setPamModuleConfValue()
743 void UserMgr::userEnable(const std::string& userName, bool enabled) in userEnable()
777 bool UserMgr::parseFaillockForLockout( in parseFaillockForLockout()
835 bool UserMgr::userLockedForFailedAttempt(const std::string& userName) in userLockedForFailedAttempt()
858 bool UserMgr::userLockedForFailedAttempt(const std::string& userName, in userLockedForFailedAttempt()
882 bool UserMgr::userPasswordExpired(const std::string& userName) in userPasswordExpired()
926 UserSSHLists UserMgr::getUserAndSshGrpList() in getUserAndSshGrpList()
978 size_t UserMgr::getIpmiUsersCount() in getIpmiUsersCount()
984 size_t UserMgr::getNonIpmiUsersCount() in getNonIpmiUsersCount()
990 bool UserMgr::isUserEnabled(const std::string& userName) in isUserEnabled()
1010 std::vector<std::string> UserMgr::getUsersInGroup(const std::string& groupName) in getUsersInGroup()
1036 DbusUserObj UserMgr::getPrivilegeMapperObject(void) in getPrivilegeMapperObject()
1067 std::string UserMgr::getServiceName(std::string&& path, std::string&& intf) in getServiceName()
1095 gid_t UserMgr::getPrimaryGroup(const std::string& userName) const in getPrimaryGroup()
1122 bool UserMgr::isGroupMember(const std::string& userName, gid_t primaryGid, in isGroupMember()
1186 void UserMgr::executeGroupCreation(const char* groupName) in executeGroupCreation()
1191 void UserMgr::executeGroupDeletion(const char* groupName) in executeGroupDeletion()
1196 UserInfoMap UserMgr::getUserInfo(std::string userName) in getUserInfo()
1304 void UserMgr::initializeAccountPolicy() in initializeAccountPolicy()
1411 void UserMgr::initUserObjects(void) in initUserObjects()
1477 UserMgr::UserMgr(sdbusplus::bus_t& bus, const char* path) : in UserMgr() function in phosphor::user::UserMgr
1494 void UserMgr::executeUserAdd(const char* userName, const char* groups, in executeUserAdd()
1504 void UserMgr::executeUserDelete(const char* userName) in executeUserDelete()
1509 void UserMgr::executeUserClearFailRecords(const char* userName) in executeUserClearFailRecords()
1514 void UserMgr::executeUserRename(const char* userName, const char* newUserName) in executeUserRename()
1522 void UserMgr::executeUserModify(const char* userName, const char* newGroups, in executeUserModify()
1529 void UserMgr::executeUserModifyUserEnable(const char* userName, bool enabled) in executeUserModifyUserEnable()
1537 std::vector<std::string> UserMgr::getFailedAttempt(const char* userName) in getFailedAttempt()