Home
last modified time | relevance | path

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

/openbmc/estoraged/include/
H A DfilesystemInterface.hpp64 virtual int doUnmount(const char* target) = 0;
148 int doUnmount(const char* target) override in doUnmount() function in estoraged::Filesystem
/openbmc/estoraged/src/test/include/
H A Destoraged_test.hpp34 MOCK_METHOD(int, doUnmount, (const char* target), (override));
/openbmc/estoraged/src/test/
H A Destoraged_test.cpp172 EXPECT_CALL(*mockFsIface, doUnmount(StrEq(esObject->getMountPoint()))) in TEST_F()
224 EXPECT_CALL(*mockFsIface, doUnmount(StrEq(esObject->getMountPoint()))) in TEST_F()
446 EXPECT_CALL(*mockFsIface, doUnmount(StrEq(esObject->getMountPoint()))) in TEST_F()
490 EXPECT_CALL(*mockFsIface, doUnmount(StrEq(esObject->getMountPoint()))) in TEST_F()
538 EXPECT_CALL(*mockFsIface, doUnmount(StrEq(esObject->getMountPoint()))) in TEST_F()
/openbmc/estoraged/src/
H A Destoraged.cpp517 int retval = fsIface->doUnmount(mountPoint.c_str()); in unmountFilesystem()