Home
last modified time | relevance | path

Searched refs:mountSystem (Results 1 – 5 of 5) sorted by relevance

/system/libvintf/test/
Dvintf_object_tests.cpp228 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
246 EXPECT_CALL(mounter(), mountSystem()).Times(2); in TEST_F()
267 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
284 EXPECT_CALL(mounter(), mountSystem()).Times(1); // Should only mount once for manifest in TEST_F()
328 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
345 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
366 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
384 EXPECT_CALL(mounter(), mountSystem()).Times(0); in TEST_F()
Dutils-fake.h46 ON_CALL(*this, mountSystem()).WillByDefault(Invoke([&] { in MockPartitionMounter()
63 MOCK_CONST_METHOD0(mountSystem, status_t());
/system/libvintf/
DVintfObject.cpp207 auto mountSystem = [&mounter] { return mounter.mountSystem(); }; in checkCompatibility() local
210 pkg.fwk.manifest.get(), mount, mountSystem, &updated.fwk.manifest, in checkCompatibility()
220 pkg.fwk.matrix.get(), mount, mountSystem, &updated.fwk.matrix, in checkCompatibility()
DVintfObjectRecovery.cpp46 status_t mountSystem() const override { in mountSystem() function in android::vintf::details::RecoveryPartitionMounter
Dutils.h61 virtual status_t mountSystem() const { return OK; } in mountSystem() function