Home
last modified time | relevance | path

Searched refs:removeDirectory (Results 1 – 4 of 4) sorted by relevance

/openbmc/estoraged/include/
H A DfilesystemInterface.hpp82 virtual bool removeDirectory(const std::filesystem::path& p) = 0;
158 bool removeDirectory(const std::filesystem::path& p) override in removeDirectory() function in estoraged::Filesystem
/openbmc/estoraged/src/test/include/
H A Destoraged_test.hpp39 MOCK_METHOD(bool, removeDirectory, (const std::filesystem::path& p),
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp175 EXPECT_CALL(*mockFsIface, removeDirectory(path(esObject->getMountPoint()))) in TEST_F()
227 EXPECT_CALL(*mockFsIface, removeDirectory(path(esObject->getMountPoint()))) in TEST_F()
404 EXPECT_CALL(*mockFsIface, removeDirectory(path(esObject->getMountPoint()))) in TEST_F()
493 EXPECT_CALL(*mockFsIface, removeDirectory(path(esObject->getMountPoint()))) in TEST_F()
541 EXPECT_CALL(*mockFsIface, removeDirectory(path(esObject->getMountPoint()))) in TEST_F()
/openbmc/estoraged/src/
H A Destoraged.cpp500 fsIface->removeDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()
527 bool success = fsIface->removeDirectory(std::filesystem::path(mountPoint)); in unmountFilesystem()