Home
last modified time | relevance | path

Searched refs:userLockedForFailedAttempt (Results 1 – 6 of 6) sorted by relevance

/openbmc/phosphor-user-manager/
H A Dusers.cpp180 bool Users::userLockedForFailedAttempt(void) const in userLockedForFailedAttempt() function in phosphor::user::Users
182 return manager.userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
189 bool Users::userLockedForFailedAttempt(bool value) in userLockedForFailedAttempt() function in phosphor::user::Users
193 return userLockedForFailedAttempt(); in userLockedForFailedAttempt()
197 return manager.userLockedForFailedAttempt(userName, value); in userLockedForFailedAttempt()
H A Dusers.hpp121 bool userLockedForFailedAttempt(void) const override;
127 bool userLockedForFailedAttempt(bool value) override;
H A Duser_mgr.hpp316 virtual bool userLockedForFailedAttempt(const std::string& userName);
323 bool userLockedForFailedAttempt(const std::string& userName,
H A Duser_mgr.cpp855 bool UserMgr::userLockedForFailedAttempt(const std::string& userName) in userLockedForFailedAttempt() function in phosphor::user::UserMgr
878 bool UserMgr::userLockedForFailedAttempt(const std::string& userName, in userLockedForFailedAttempt() function in phosphor::user::UserMgr
885 return userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
899 return userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
1237 user.get()->userLockedForFailedAttempt()); in getUserInfo()
/openbmc/phosphor-user-manager/test/
H A Dmock_user_mgr.hpp18 MOCK_METHOD1(userLockedForFailedAttempt, bool(const std::string& userName));
H A Duser_mgr_test.cpp125 EXPECT_CALL(mockManager, userLockedForFailedAttempt(userName)).Times(1); in TEST_F()
982 EXPECT_FALSE(userLockedForFailedAttempt("whatever")); in TEST_F()
998 EXPECT_FALSE(userLockedForFailedAttempt(username)); in TEST_F()
1010 userLockedForFailedAttempt(username), in TEST_F()
1027 userLockedForFailedAttempt(username), in TEST_F()
1043 EXPECT_EQ(userLockedForFailedAttempt(username), false); in TEST_F()