Home
last modified time | relevance | path

Searched refs:ipmiMaxUsers (Results 1 – 7 of 7) sorted by relevance

/openbmc/phosphor-host-ipmid/user_channel/
H A Duser_layer.cpp109 maxChUsers = ipmiMaxUsers; in ipmiUserGetAllCounts()
114 for (size_t count = 1; count <= ipmiMaxUsers; ++count) in ipmiUserGetAllCounts()
H A Duser_mgmt.cpp116 for (; usrIndex <= ipmiMaxUsers; ++usrIndex) in userUpdateHelper()
125 if (usrIndex > ipmiMaxUsers) in userUpdateHelper()
382 return ((userId <= ipmiMaxUsers) && (userId != reservedUserId)); in isValidUserId()
842 for (; usrIndex <= ipmiMaxUsers; ++usrIndex) in getUserId()
851 if (usrIndex > ipmiMaxUsers) in getUserId()
1120 if (jsonUsersTbl.size() != ipmiMaxUsers) in readUserData()
1128 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex) in readUserData()
1241 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex) in writeUserData()
1321 for (size_t usrIndex = 1; usrIndex <= ipmiMaxUsers; ++usrIndex) in addUserEntry()
1501 for (size_t userIndex = 1; userIndex <= ipmiMaxUsers; ++userIndex) in cacheUserDataFile()
[all …]
H A Duser_layer.hpp39 static constexpr uint8_t ipmiMaxUsers = 15; variable
H A Duser_mgmt.hpp174 UserInfo user[ipmiMaxUsers + 1];
/openbmc/phosphor-user-manager/
H A Duser_mgr.hpp49 inline constexpr size_t ipmiMaxUsers = 15;
45 inline constexpr size_t ipmiMaxUsers = 15; global() variable
H A Duser_mgr.cpp310 if (getIpmiUsersCount() >= ipmiMaxUsers)
321 (maxSystemUsers - ipmiMaxUsers))
/openbmc/phosphor-user-manager/test/
H A Duser_mgr_test.cpp1005 EXPECT_CALL(*this, getIpmiUsersCount()).WillOnce(Return(ipmiMaxUsers)); in TEST_F()