Home
last modified time | relevance | path

Searched refs:sendFile (Results 1 – 5 of 5) sorted by relevance

/openbmc/phosphor-ipmi-flash/tools/test/
H A Dtools_updater_unittest.cpp76 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage); in TEST_F()
96 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage), in TEST_F()
122 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage), in TEST_F()
149 updater.sendFile(ipmi_flash::staticLayoutBlobId, firmwareImage); in TEST_F()
371 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return()); in TEST_F()
372 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature)) in TEST_F()
389 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return()); in TEST_F()
390 EXPECT_CALL(handler, sendFile(ipmi_flash::hashBlobId, signature)) in TEST_F()
412 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return()); in TEST_F()
430 EXPECT_CALL(handler, sendFile(path, image)).WillOnce(Return()); in TEST_F()
[all …]
H A Dupdater_mock.hpp20 MOCK_METHOD(void, sendFile, (const std::string&, const std::string&),
/openbmc/phosphor-ipmi-flash/tools/
H A Dupdater.cpp75 updater->sendFile(layout, imagePath); in updaterMain()
79 updater->sendFile(ipmi_flash::hashBlobId, signaturePath); in updaterMain()
H A Dhandler.hpp33 virtual void sendFile(const std::string& target,
77 void sendFile(const std::string& target, const std::string& path) override;
H A Dhandler.cpp122 void UpdateHandler::sendFile(const std::string& target, const std::string& path) in sendFile() function in host_tool::UpdateHandler