Home
last modified time | relevance | path

Searched full:userpasswordexpired (Results 1 – 11 of 11) sorted by relevance

/openbmc/bmcweb/include/
H A Ddbus_privileges.hpp41 userRole, "RemoteUser", remoteUser, "UserPasswordExpired", in populateUserInfo()
53 "Missing UserPasswordExpired or UserGroups property for local user"); in populateUserInfo()
H A Dsessions.hpp65 // 2. D-Bus User.Manager.GetUserInfo property UserPasswordExpired.
/openbmc/phosphor-user-manager/
H A Dusers.cpp192 bool Users::userPasswordExpired(void) const in userPasswordExpired() function in phosphor::user::Users
194 return manager.userPasswordExpired(userName); in userPasswordExpired()
H A Dusers.hpp122 bool userPasswordExpired(void) const override;
H A Duser_mgr.cpp882 bool UserMgr::userPasswordExpired(const std::string& userName) in userPasswordExpired() function in phosphor::user::UserMgr
1208 userInfo.emplace("UserPasswordExpired", in getUserInfo()
1209 user.get()->userPasswordExpired()); in getUserInfo()
H A Duser_mgr.hpp239 virtual bool userPasswordExpired(const std::string& userName);
/openbmc/phosphor-user-manager/test/
H A Dmock_user_mgr.hpp19 MOCK_METHOD1(userPasswordExpired, bool(const std::string& userName));
H A Duser_mgr_test.cpp131 EXPECT_EQ(false, std::get<bool>(userInfo["UserPasswordExpired"])); in TEST_F()
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/User/
H A DAttributes.interface.yaml51 - name: UserPasswordExpired
H A DManager.interface.yaml86 UserPasswordExpired -> user password expired(boolean)
/openbmc/bmcweb/redfish-core/lib/
H A Daccount_service.hpp2078 const bool* userPasswordExpired = nullptr; in handleAccountGet()
2085 "UserPrivilege", userPrivPtr, "UserPasswordExpired", in handleAccountGet()
2086 userPasswordExpired, "UserGroups", userGroups); in handleAccountGet()
2136 if (userPasswordExpired == nullptr) in handleAccountGet()
2138 BMCWEB_LOG_ERROR("UserPasswordExpired wasn't a bool"); in handleAccountGet()
2143 *userPasswordExpired;
2055 const bool* userPasswordExpired = nullptr; handleAccountGet() local