Home
last modified time | relevance | path

Searched refs:entryID (Results 1 – 10 of 10) sorted by relevance

/openbmc/ibm-logging/
H A Dcallout.hpp72 return entryID; in id()
82 entryID = id; in id()
139 return baseDir / std::to_string(entryID); in getFilePath()
146 size_t entryID; member in ibm::logging::Callout
H A Dcallout.cpp88 entryID(id), timestamp(timestamp) in Callout()
95 entryID(id), timestamp(timestamp) in Callout()
154 auto originalID = entryID; in deserialize()
173 if ((entryID != originalID) || (timestamp != originalTS)) in deserialize()
177 entry("PATH=%s", path.c_str()), entry("PERSISTED_ID=%lu", entryID), in deserialize()
/openbmc/phosphor-logging/lib/
H A Delog.cpp38 auto entryID = reply.unpack<uint32_t>(); in commit() local
40 return entryID; in commit()
50 auto entryID = reply.unpack<uint32_t>(); in commit() local
52 return entryID; in commit()
/openbmc/bmcweb/redfish-core/include/utils/
H A Deventlog_utils.hpp184 inline bool getUniqueEntryID(const std::string& logEntry, std::string& entryID, in getUniqueEntryID() argument
215 entryID = std::to_string(curTs); in getUniqueEntryID()
218 entryID += "_" + std::to_string(index); in getUniqueEntryID()
692 const std::string& logEntryDescriptor, const std::string& entryID, in afterDBusEventLogEntryGet() argument
698 messages::resourceNotFound(asyncResp->res, "EventLogEntry", entryID); in afterDBusEventLogEntryGet()
724 LogServiceParent parent, std::string entryID) in dBusEventLogEntryGet() argument
736 dbus::utility::escapePathForDbus(entryID); in dBusEventLogEntryGet()
742 "/xyz/openbmc_project/logging/entry/" + entryID, "", in dBusEventLogEntryGet()
744 childId, logEntryDescriptor, entryID)); in dBusEventLogEntryGet()
767 const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, std::string entryID) in dBusEventLogEntryDelete() argument
[all …]
H A Dlog_services_utils.hpp67 const std::string& entryID, const std::string& downloadEntryType, in downloadEntryCallback() argument
73 messages::resourceNotFound(asyncResp->res, "EntryAttachment", entryID); in downloadEntryCallback()
/openbmc/bmcweb/redfish-core/lib/
H A Dlog_services.hpp308 std::string entryID = object.first.filename(); in getDumpEntryCollection() local
309 if (entryID.empty()) in getDumpEntryCollection()
327 thisEntry["@odata.id"] = entriesPath + entryID; in getDumpEntryCollection()
328 thisEntry["Id"] = entryID; in getDumpEntryCollection()
344 entriesPath + entryID + "/attachment"; in getDumpEntryCollection()
352 entriesPath + entryID + "/attachment"; in getDumpEntryCollection()
365 const std::string& entryID, const std::string& dumpType) in getDumpEntryById() argument
377 [asyncResp, entryID, dumpType, in getDumpEntryById()
392 if (objectPath.first.str != dumpEntryPath + entryID) in getDumpEntryById()
416 dumpType + " dump", entryID); in getDumpEntryById()
[all …]
H A Dmanager_logservices_journal.hpp275 const std::string& managerId, const std::string& entryID) in handleManagersJournalEntriesLogEntryGet() argument
301 if (!crow::utility::base64Decode(entryID, cursor)) in handleManagersJournalEntriesLogEntryGet()
303 messages::resourceNotFound(asyncResp->res, "LogEntry", entryID); in handleManagersJournalEntriesLogEntryGet()
311 messages::resourceNotFound(asyncResp->res, "LogEntry", entryID); in handleManagersJournalEntriesLogEntryGet()
324 messages::resourceNotFound(asyncResp->res, "LogEntry", entryID); in handleManagersJournalEntriesLogEntryGet()
/openbmc/bmcweb/redfish-core/src/
H A Devent_log.cpp32 bool getUniqueEntryID(const std::string& logEntry, std::string& entryID) in getUniqueEntryID() argument
55 entryID = std::to_string(curTs); in getUniqueEntryID()
58 entryID += "_" + std::to_string(index); in getUniqueEntryID()
/openbmc/bmcweb/test/redfish-core/include/
H A Devent_log_test.cpp24 std::string entryID; in TEST() local
26 success = getUniqueEntryID(example, entryID); in TEST()
31 ASSERT_TRUE(entryID.starts_with("946")); in TEST()
/openbmc/bmcweb/redfish-core/include/
H A Devent_log.hpp17 bool getUniqueEntryID(const std::string& logEntry, std::string& entryID);