Home
last modified time | relevance | path

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

/openbmc/phosphor-user-manager/
H A Dusers.cpp168 bool Users::userLockedForFailedAttempt(void) const in userLockedForFailedAttempt() function in phosphor::user::Users
170 return manager.userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
177 bool Users::userLockedForFailedAttempt(bool value) in userLockedForFailedAttempt() function in phosphor::user::Users
181 return userLockedForFailedAttempt(); in userLockedForFailedAttempt()
185 return manager.userLockedForFailedAttempt(userName, value); in userLockedForFailedAttempt()
H A Dusers.hpp111 bool userLockedForFailedAttempt(void) const override;
117 bool userLockedForFailedAttempt(bool value) override;
H A Duser_mgr.hpp224 virtual bool userLockedForFailedAttempt(const std::string& userName);
231 bool userLockedForFailedAttempt(const std::string& userName,
H A Duser_mgr.cpp835 bool UserMgr::userLockedForFailedAttempt(const std::string& userName) in userLockedForFailedAttempt() function in phosphor::user::UserMgr
858 bool UserMgr::userLockedForFailedAttempt(const std::string& userName, in userLockedForFailedAttempt() function in phosphor::user::UserMgr
865 return userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
879 return userLockedForFailedAttempt(userName); in userLockedForFailedAttempt()
1208 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.cpp123 EXPECT_CALL(mockManager, userLockedForFailedAttempt(userName)).Times(1); in TEST_F()
943 EXPECT_FALSE(userLockedForFailedAttempt("whatever")); in TEST_F()
959 EXPECT_FALSE(userLockedForFailedAttempt(username)); in TEST_F()
971 userLockedForFailedAttempt(username), in TEST_F()
988 userLockedForFailedAttempt(username), in TEST_F()
1004 EXPECT_EQ(userLockedForFailedAttempt(username), false); in TEST_F()