Home
last modified time | relevance | path

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

/openbmc/estoraged/src/
H A Destoraged.cpp47 fsIface(std::move(fsInterface)), in EStoraged()
414 int retval = fsIface->runMkfs(cryptDevicePath); in createFilesystem()
434 if (!fsIface->directoryExists(std::filesystem::path(mountPoint))) in mountFilesystem()
437 fsIface->createDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()
448 int retval = fsIface->doMount(cryptDevicePath.c_str(), mountPoint.c_str(), in mountFilesystem()
456 fsIface->removeDirectory(std::filesystem::path(mountPoint)); in mountFilesystem()
473 int retval = fsIface->doUnmount(mountPoint.c_str()); in unmountFilesystem()
483 bool success = fsIface->removeDirectory(std::filesystem::path(mountPoint)); in unmountFilesystem()
/openbmc/estoraged/include/
H A Destoraged.hpp144 std::unique_ptr<FilesystemInterface> fsIface; member in estoraged::EStoraged
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp80 std::unique_ptr<MockFilesystemInterface> fsIface = in SetUp() local
82 mockFsIface = fsIface.get(); in SetUp()
97 std::move(fsIface)); in SetUp()