Home
last modified time | relevance | path

Searched refs:MetricBlobHandler (Results 1 – 3 of 3) sorted by relevance

/openbmc/google-misc/subprojects/metrics-ipmi-blobs/
H A Dhandler.hpp27 class MetricBlobHandler : public GenericBlobInterface class
30 MetricBlobHandler() = default;
31 ~MetricBlobHandler() = default;
32 MetricBlobHandler(const MetricBlobHandler&) = delete;
33 MetricBlobHandler& operator=(const MetricBlobHandler&) = delete;
34 MetricBlobHandler(MetricBlobHandler&&) = default;
35 MetricBlobHandler& operator=(MetricBlobHandler&&) = default;
H A Dhandler.cpp31 bool MetricBlobHandler::canHandleBlob(const std::string& path) in canHandleBlob()
38 std::vector<std::string> MetricBlobHandler::getBlobIds() in getBlobIds()
44 bool MetricBlobHandler::deleteBlob(const std::string&) in deleteBlob()
50 bool MetricBlobHandler::stat(const std::string&, BlobMeta*) in stat()
56 bool MetricBlobHandler::isReadOnlyOpenFlags(const uint16_t flags) in isReadOnlyOpenFlags()
67 bool MetricBlobHandler::open(uint16_t session, uint16_t flags, in open()
111 bool MetricBlobHandler::writeMeta(uint16_t, uint32_t, in writeMeta()
118 bool MetricBlobHandler::commit(uint16_t, const std::vector<uint8_t>&) in commit()
124 bool MetricBlobHandler::close(uint16_t session) in close()
136 bool MetricBlobHandler::stat(uint16_t session, BlobMeta* meta) in stat()
[all …]
H A Dmain.cpp34 return std::make_unique<blobs::MetricBlobHandler>(); in createHandler()