Home
last modified time | relevance | path

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

/openbmc/bios-bmc-smm-error-logger/include/rde/
H A Dexternal_storer_file.hpp55 virtual bool removeAll(const std::string& filePath) const = 0;
67 bool removeAll(const std::string& filePath) const override;
/openbmc/bios-bmc-smm-error-logger/test/
H A Dexternal_storer_file_test.cpp30 MOCK_METHOD(bool, removeAll, (const std::string& path), (const, override));
192 EXPECT_CALL(*mockFileWriterPtr, removeAll(logPath2)).WillOnce(Return(true)); in TEST_F()
203 EXPECT_CALL(*mockFileWriterPtr, removeAll(logPath3)).WillOnce(Return(true)); in TEST_F()
/openbmc/bios-bmc-smm-error-logger/src/rde/
H A Dexternal_storer_file.cpp47 bool ExternalStorerFileWriter::removeAll(const std::string& filePath) const in removeAll() function in bios_bmc_smm_error_logger::rde::ExternalStorerFileWriter
141 if (!fileHandler->removeAll(oldestFilePath)) in processLogEntry()