Home
last modified time | relevance | path

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

/openbmc/estoraged/include/
H A DfilesystemInterface.hpp90 virtual bool directoryExists(const std::filesystem::path& p) = 0;
163 bool directoryExists(const std::filesystem::path& p) override in directoryExists() function in estoraged::Filesystem
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp161 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
213 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
359 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
393 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
435 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
479 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
527 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
/openbmc/estoraged/src/test/include/
H A Destoraged_test.hpp42 MOCK_METHOD(bool, directoryExists, (const std::filesystem::path& p),
/openbmc/estoraged/src/
H A Destoraged.cpp478 if (!fsIface->directoryExists(std::filesystem::path(mountPoint))) in mountFilesystem()