Home
last modified time | relevance | path

Searched refs:createDirectory (Results 1 – 6 of 6) sorted by relevance

/openbmc/estoraged/include/
H A DfilesystemInterface.hpp70 virtual bool createDirectory(const std::filesystem::path& p) = 0;
123 bool createDirectory(const std::filesystem::path& p) override in createDirectory() function in estoraged::Filesystem
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp148 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
195 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
335 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
364 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
401 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
440 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
483 EXPECT_CALL(*mockFsIface, createDirectory(path(esObject->getMountPoint()))) in TEST_F()
/openbmc/bmcweb/include/ibm/
H A Dutils.hpp16 inline bool createDirectory(std::string_view path) in createDirectory() function
H A Dmanagement_console_rest.hpp68 if (!crow::ibm_utils::createDirectory(path)) in handleFilePut()
/openbmc/estoraged/src/test/include/
H A Destoraged_test.hpp33 MOCK_METHOD(bool, createDirectory, (const std::filesystem::path& p),
/openbmc/estoraged/src/
H A Destoraged.cpp437 fsIface->createDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()