Lines Matching full:entry
3 #include "xyz/openbmc_project/Certs/Entry/server.hpp"
20 sdbusplus::xyz::openbmc_project::Certs::server::Entry,
26 /** @class Entry
27 * @brief CA authority certificate Entry implementation.
29 * xyz.openbmc_project.Certs.Entry DBus API
31 class Entry : public internal::EntryInterface class
34 Entry() = delete;
35 Entry(const Entry&) = delete;
36 Entry& operator=(const Entry&) = delete;
37 Entry(Entry&&) = delete;
38 Entry& operator=(Entry&&) = delete;
39 ~Entry() = default;
44 * @param[in] entryId - Entry id
48 Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t entryId, in Entry() function in ca::cert::Entry