Home
last modified time | relevance | path

Searched refs:getBlobId (Results 1 – 6 of 6) sorted by relevance

/openbmc/phosphor-ipmi-blobs/test/
H A Dmanager_unittest.cpp104 std::string result = mgr.getBlobId(0); in TEST()
137 results.push_back(mgr.getBlobId(0)); in TEST()
138 results.push_back(mgr.getBlobId(1)); in TEST()
170 EXPECT_STREQ("", mgr.getBlobId(2).c_str()); in TEST()
H A Dipmi_enumerate_unittest.cpp27 EXPECT_CALL(mgr, getBlobId(req.blobIdx)).WillOnce(Return("")); in TEST()
46 EXPECT_CALL(mgr, getBlobId(req.blobIdx)).WillOnce(Return(blobId)); in TEST()
H A Dmanager_mock.hpp23 MOCK_METHOD(std::string, getBlobId, (uint32_t), (override));
/openbmc/phosphor-ipmi-blobs/
H A Dmanager.hpp49 virtual std::string getBlobId(uint32_t index) = 0;
118 std::string getBlobId(uint32_t index) override;
H A Dmanager.cpp55 std::string BlobManager::getBlobId(uint32_t index) in getBlobId() function in blobs::BlobManager
H A Dipmi.cpp98 std::string blobId = mgr->getBlobId(request.blobIdx); in enumerateBlob()