Home
last modified time | relevance | path

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

/openbmc/estoraged/include/
H A DfilesystemInterface.hpp87 virtual bool directoryExists(const std::filesystem::path& p) = 0;
133 bool directoryExists(const std::filesystem::path& p) override in directoryExists() function in estoraged::Filesystem
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp145 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
192 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
332 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
361 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
398 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
437 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
480 EXPECT_CALL(*mockFsIface, directoryExists(path(esObject->getMountPoint()))) in TEST_F()
/openbmc/estoraged/src/test/include/
H A Destoraged_test.hpp39 MOCK_METHOD(bool, directoryExists, (const std::filesystem::path& p),
/openbmc/estoraged/src/
H A Destoraged.cpp434 if (!fsIface->directoryExists(std::filesystem::path(mountPoint))) in mountFilesystem()