Lines Matching full:entry
21 /** @class Entry
22 * @brief OpenBMC Fault Log Dump Entry implementation.
24 class Entry : virtual public phosphor::dump::Entry class
27 Entry() = delete;
28 Entry(const Entry&) = delete;
29 Entry& operator=(const Entry&) = delete;
30 Entry(Entry&&) = delete;
31 Entry& operator=(Entry&&) = delete;
32 ~Entry() = default;
34 /** @brief Constructor for the Dump Entry Object
45 * @param[in] parent - The dump entry's parent.
47 Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId, in Entry() function in phosphor::dump::faultlog::Entry
52 phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, fileSize, in Entry()