| /openbmc/phosphor-logging/ |
| H A D | log_manager.cpp | 72 return entryId; in commit() 80 return entryId; in commitWithLvl() 226 entryId++; in createEntry() 229 infoErrors.push_back(entryId); in createEntry() 233 realErrors.push_back(entryId); in createEntry() 238 auto objPath = std::string(OBJ_ENTRY) + '/' + std::to_string(entryId); in createEntry() 245 busLog, objPath, entryId, in createEntry() 248 std::move(objects), fwVersion, getEntrySerializePath(entryId), *this); in createEntry() 255 quiesceOnError(entryId); in createEntry() 259 entries.insert(std::make_pair(entryId, std::move(e))); in createEntry() [all …]
|
| H A D | elog_block.hpp | 43 Block(sdbusplus::bus_t& bus, const std::string& path, uint32_t entryId) : in Block() argument 44 BlockIface(bus, path.c_str()), entryId(entryId) in Block() 47 std::string(OBJ_ENTRY) + '/' + std::to_string(entryId)}; in Block() 54 uint32_t entryId; member in phosphor::logging::Block
|
| H A D | log_manager.hpp | 75 entryId(0), fwVersion(readFWVersion()) {}; in Manager() 107 void erase(uint32_t entryId); 167 return entryId; in lastEntryID() 206 void quiesceOnError(const uint32_t entryId); 220 void checkAndRemoveBlockingError(uint32_t entryId); 307 uint32_t entryId; member in phosphor::logging::internal::Manager
|
| H A D | elog_entry.hpp | 101 Entry(sdbusplus::bus_t& bus, const std::string& path, uint32_t entryId, in Entry() argument 106 id(entryId, true); in Entry()
|
| /openbmc/bmcweb/redfish-core/lib/ |
| H A D | systems_logservices_dbus_eventlog.hpp | 60 const std::string& systemName, const std::string& entryId) in handleSystemsDBusEventLogEntryGet() argument 81 asyncResp, eventlog_utils::LogServiceParent::Systems, entryId); in handleSystemsDBusEventLogEntryGet() 87 const std::string& systemName, const std::string& entryId) in handleSystemsDBusEventLogEntryPatch() argument 107 eventlog_utils::dBusEventLogEntryPatch(req, asyncResp, entryId); in handleSystemsDBusEventLogEntryPatch() 113 const std::string& systemName, const std::string& entryId) in handleSystemsDBusEventLogEntryDelete() argument 133 eventlog_utils::dBusEventLogEntryDelete(asyncResp, entryId); in handleSystemsDBusEventLogEntryDelete() 165 const std::string& systemName, const std::string& entryId) in handleSystemsDBusEventLogEntryDownloadGet() argument 192 eventlog_utils::downloadEventLogEntry(asyncResp, entryId, "System"); in handleSystemsDBusEventLogEntryDownloadGet()
|
| H A D | manager_logservices_dbus_eventlog.hpp | 51 const std::string& managerId, const std::string& entryId) in handleManagersDBusEventLogEntryGet() argument 64 asyncResp, eventlog_utils::LogServiceParent::Managers, entryId); in handleManagersDBusEventLogEntryGet() 70 const std::string& managerId, const std::string& entryId) in handleManagersDBusEventLogEntryPatch() argument 82 eventlog_utils::dBusEventLogEntryPatch(req, asyncResp, entryId); in handleManagersDBusEventLogEntryPatch() 88 const std::string& managerId, const std::string& entryId) in handleManagersDBusEventLogEntryDelete() argument 100 eventlog_utils::dBusEventLogEntryDelete(asyncResp, entryId); in handleManagersDBusEventLogEntryDelete() 129 const std::string& managerId, const std::string& entryId) in handleManagersDBusEventLogEntryDownload() argument 146 eventlog_utils::downloadEventLogEntry(asyncResp, entryId, "System"); in handleManagersDBusEventLogEntryDownload()
|
| H A D | systems_logservices_postcodes.hpp | 329 const std::string& entryId) in getPostCodeForEntry() argument 333 if (!parsePostCode(entryId, codeIndex, bootIndex)) in getPostCodeForEntry() 336 messages::resourceNotFound(asyncResp->res, "LogEntry", entryId); in getPostCodeForEntry() 343 messages::resourceNotFound(asyncResp->res, "LogEntry", entryId); in getPostCodeForEntry() 349 [asyncResp, entryId, bootIndex, in getPostCodeForEntry() 363 messages::resourceNotFound(asyncResp->res, "LogEntry", entryId); in getPostCodeForEntry() 369 messages::resourceNotFound(asyncResp->res, "LogEntry", entryId); in getPostCodeForEntry()
|
| /openbmc/openpower-pnor-code-mgmt/ |
| H A D | item_updater.cpp | 174 bool ItemUpdater::erase(std::string entryId) in erase() argument 176 if (isVersionFunctional(entryId) && isChassisOn()) in erase() 178 log<level::ERR>(("Error: Version " + entryId + in erase() 186 auto it = versions.find(entryId); in erase() 189 log<level::ERR>(("Error: Failed to find version " + entryId + in erase() 196 versions.erase(entryId); in erase() 200 auto ita = activations.find(entryId); in erase() 203 log<level::ERR>(("Error: Failed to find version " + entryId + in erase() 211 activations.erase(entryId); in erase()
|
| H A D | item_updater.hpp | 115 virtual bool erase(std::string entryId);
|
| /openbmc/phosphor-bmc-code-mgmt/bmc/ubi/ |
| H A D | item_updater_helper.cpp | 19 void Helper::setEntry(const std::string& entryId, uint8_t value) in setEntry() argument 21 std::string serviceFile = "obmc-flash-bmc-setenv@" + entryId + "\\x3d" + in setEntry() 29 void Helper::clearEntry(const std::string& entryId) in clearEntry() argument 32 auto serviceFile = "obmc-flash-bmc-setenv@" + entryId + ".service"; in clearEntry()
|
| /openbmc/phosphor-debug-collector/ |
| H A D | dump_manager.cpp | 8 void Manager::erase(uint32_t entryId) in erase() argument 10 entries.erase(entryId); in erase()
|
| H A D | dump_manager.hpp | 60 void erase(uint32_t entryId);
|
| /openbmc/phosphor-bmc-code-mgmt/bmc/ |
| H A D | item_updater_helper.hpp | 38 void setEntry(const std::string& entryId, uint8_t value); 44 void clearEntry(const std::string& entryId);
|
| H A D | item_updater.cpp | 490 void ItemUpdater::erase(std::string entryId) in erase() argument 493 auto it = versions.find(entryId); in erase() 501 "VERSIONID", entryId); in erase() 512 auto iteratorActivations = activations.find(entryId); in erase() 517 "VERSIONID", entryId); in erase() 523 this->activations.erase(entryId); in erase() 535 removeReadOnlyPartition(entryId); in erase() 550 this->versions.erase(entryId); in erase() 554 auto updateManagerIt = updateManagers.find(entryId); in erase() 557 updateManagers.erase(entryId); in erase()
|
| H A D | image_manager.hpp | 46 void erase(const std::string& entryId);
|
| H A D | image_manager.cpp | 243 void Manager::erase(const std::string& entryId) in erase() argument 245 auto it = versions.find(entryId); in erase() 258 this->versions.erase(entryId); in erase()
|
| H A D | item_updater.hpp | 203 void erase(std::string entryId);
|
| /openbmc/phosphor-certificate-manager/bmc-vmi-ca/ |
| H A D | ca_cert_entry.hpp | 48 Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t entryId, in Entry() argument 52 bus(bus), id(entryId), manager(manager) in Entry()
|
| H A D | ca_certs_manager.cpp | 55 void CACertMgr::erase(uint32_t entryId) in erase() argument 57 entries.erase(entryId); in erase()
|
| H A D | ca_certs_manager.hpp | 55 void erase(uint32_t entryId);
|
| /openbmc/openpower-pnor-code-mgmt/ubi/ |
| H A D | item_updater_ubi.cpp | 316 bool ItemUpdaterUbi::erase(std::string entryId) in erase() argument 318 if (!ItemUpdater::erase(entryId)) in erase() 324 removeFile(entryId); in erase() 327 removeReadWritePartition(entryId); in erase() 328 removeReadOnlyPartition(entryId); in erase()
|
| H A D | item_updater_ubi.hpp | 49 bool erase(std::string entryId) override;
|
| /openbmc/phosphor-certificate-manager/test/ |
| H A D | ca_certs_manager_test.cpp | 32 void erase(uint32_t entryId) in erase() argument 34 CACertMgr::erase(entryId); in erase()
|
| /openbmc/phosphor-user-manager/phosphor-ldap-config/ |
| H A D | ldap_config.cpp | 748 entryId++; in create() 753 mapperObjectPath /= std::to_string(entryId); in create() 765 PrivilegeMapperList.emplace(entryId, std::move(entry)); in create() 845 if (idNum > entryId) in restoreRoleMapping() 847 entryId = idNum; in restoreRoleMapping()
|
| H A D | ldap_config.hpp | 264 Id entryId = 0; member in phosphor::ldap::Config
|