Searched refs:mounter (Results 1 - 3 of 3) sorted by relevance

/system/libvintf/test/
H A Dvintf_object_tests.cpp198 static MockPartitionMounter &mounter() { function
209 mounter().reset();
214 Mock::VerifyAndClear(&mounter());
229 EXPECT_CALL(mounter(), mountSystem()).Times(0);
230 EXPECT_CALL(mounter(), umountSystem()).Times(0);
231 EXPECT_CALL(mounter(), mountVendor()).Times(0);
232 EXPECT_CALL(mounter(), umountVendor()).Times(0);
239 EXPECT_FALSE(mounter().systemMounted());
240 EXPECT_FALSE(mounter().vendorMounted());
247 EXPECT_CALL(mounter(), mountSyste
448 NiceMock<MockPartitionMounter> mounter; local
[all...]
/system/libvintf/
H A DVintfObjectRecovery.cpp84 static details::RecoveryPartitionMounter mounter; local
85 return details::checkCompatibility(xmls, true /* mount */, mounter, error);
H A DVintfObject.cpp176 const PartitionMounter& mounter, std::string* error,
207 auto mountSystem = [&mounter] { return mounter.mountSystem(); };
208 auto mountVendor = [&mounter] { return mounter.mountVendor(); };
232 (void)mounter.umountSystem(); // ignore errors
233 (void)mounter.umountVendor(); // ignore errors
175 checkCompatibility(const std::vector<std::string>& xmls, bool mount, const PartitionMounter& mounter, std::string* error, DisabledChecks disabledChecks) argument

Completed in 56 milliseconds