/openbmc/phosphor-ipmi-blobs/test/ |
H A D | manager_delete_unittest.cpp | 31 EXPECT_FALSE(mgr.deleteBlob(path)); in TEST() 48 EXPECT_FALSE(mgr.deleteBlob(path)); in TEST() 64 EXPECT_CALL(*m1ptr, deleteBlob(path)).WillOnce(Return(false)); in TEST() 67 EXPECT_FALSE(mgr.deleteBlob(path)); in TEST() 82 EXPECT_CALL(*m1ptr, deleteBlob(path)).WillOnce(Return(true)); in TEST() 85 EXPECT_TRUE(mgr.deleteBlob(path)); in TEST() 103 EXPECT_CALL(*m1ptr, deleteBlob(path)).WillOnce(Return(true)); in TEST() 109 EXPECT_TRUE(mgr.deleteBlob(path)); in TEST()
|
H A D | ipmi_delete_unittest.cpp | 29 EXPECT_EQ(ipmi::responseReqDataLenInvalid(), deleteBlob(&mgr, request)); in TEST() 46 EXPECT_CALL(mgr, deleteBlob(StrEq(blobId))).WillOnce(Return(false)); in TEST() 47 EXPECT_EQ(ipmi::responseUnspecifiedError(), deleteBlob(&mgr, request)); in TEST() 64 EXPECT_CALL(mgr, deleteBlob(StrEq(blobId))).WillOnce(Return(true)); in TEST() 67 deleteBlob(&mgr, request)); in TEST()
|
H A D | blob_mock.hpp | 17 MOCK_METHOD(bool, deleteBlob, (const std::string&), (override));
|
H A D | manager_mock.hpp | 35 MOCK_METHOD(bool, deleteBlob, (const std::string&), (override));
|
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/ |
H A D | firmware_state_updatepending_unittest.cpp | 244 EXPECT_TRUE(handler->deleteBlob(updateBlobId)); in TEST_F() 258 EXPECT_TRUE(handler->deleteBlob(activeImageBlobId)); in TEST_F() 272 EXPECT_TRUE(handler->deleteBlob(staticLayoutBlobId)); in TEST_F() 286 EXPECT_TRUE(handler->deleteBlob(hashBlobId)); in TEST_F()
|
H A D | firmware_state_verificationpending_unittest.cpp | 78 EXPECT_TRUE(handler->deleteBlob(verifyBlobId)); in TEST_F() 93 EXPECT_TRUE(handler->deleteBlob(activeImageBlobId)); in TEST_F() 108 EXPECT_TRUE(handler->deleteBlob(staticLayoutBlobId)); in TEST_F() 123 EXPECT_TRUE(handler->deleteBlob(hashBlobId)); in TEST_F()
|
H A D | firmware_state_notyetstarted_unittest.cpp | 51 EXPECT_FALSE(handler->deleteBlob(b)); in TEST_F()
|
H A D | firmware_state_updatestarted_unittest.cpp | 84 EXPECT_FALSE(handler->deleteBlob(b)); in TEST_F()
|
H A D | firmware_state_updatecompleted_unittest.cpp | 244 EXPECT_FALSE(handler->deleteBlob(b)); in TEST_F()
|
/openbmc/phosphor-ipmi-blobs/ |
H A D | manager.hpp | 68 virtual bool deleteBlob(const std::string& path) = 0; 206 bool deleteBlob(const std::string& path) override;
|
H A D | manager.cpp | 187 bool BlobManager::deleteBlob(const std::string& path) in deleteBlob() function in blobs::BlobManager 204 return handler->deleteBlob(path); in deleteBlob()
|
H A D | ipmi.cpp | 154 Resp deleteBlob(ManagerInterface* mgr, std::span<const uint8_t> data) in deleteBlob() function 163 if (!mgr->deleteBlob(path)) in deleteBlob()
|
H A D | ipmi.hpp | 173 Resp deleteBlob(ManagerInterface* mgr, std::span<const uint8_t> data);
|
H A D | process.cpp | 48 {BlobOEMCommands::bmcBlobDelete, deleteBlob},
|
/openbmc/phosphor-ipmi-flash/tools/ |
H A D | updater.cpp | 64 blob->deleteBlob(activeBlob); in updaterMain()
|
/openbmc/phosphor-ipmi-flash/cleanup/test/ |
H A D | cleanup_handler_unittest.cpp | 59 EXPECT_FALSE(handler->deleteBlob("abcd")); in TEST_F()
|
/openbmc/google-misc/subprojects/metrics-ipmi-blobs/ |
H A D | handler.hpp | 39 bool deleteBlob(const std::string& path) override;
|
H A D | handler.cpp | 44 bool MetricBlobHandler::deleteBlob(const std::string&) in deleteBlob() function in blobs::MetricBlobHandler
|
/openbmc/phosphor-ipmi-blobs/blobs-ipmid/ |
H A D | blobs.hpp | 85 virtual bool deleteBlob(const std::string& path) = 0;
|
/openbmc/phosphor-ipmi-flash/cleanup/ |
H A D | cleanup.hpp | 52 bool deleteBlob(const std::string&) override in deleteBlob() function in ipmi_flash::FileCleanupHandler
|
/openbmc/phosphor-ipmi-flash/bmc/version-handler/ |
H A D | version_handler.hpp | 46 bool deleteBlob(const std::string& path) override;
|
/openbmc/phosphor-ipmi-flash/bmc/log-handler/ |
H A D | log_handler.hpp | 61 bool deleteBlob(const std::string& path) override;
|
/openbmc/smbios-mdr/src/smbios-ipmi-blobs/ |
H A D | handler.hpp | 52 bool deleteBlob(const std::string& path) override;
|
/openbmc/phosphor-ipmi-blobs/example/ |
H A D | example.hpp | 69 bool deleteBlob(const std::string& path) override;
|
H A D | example.cpp | 40 bool ExampleBlobHandler::deleteBlob(const std::string&) in deleteBlob() function in blobs::ExampleBlobHandler
|