Home
last modified time | relevance | path

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

/system/libvintf/test/
Dvintf_object_tests.cpp230 EXPECT_CALL(mounter(), mountVendor()).Times(0); in TEST_F()
248 EXPECT_CALL(mounter(), mountVendor()).Times(2); in TEST_F()
269 EXPECT_CALL(mounter(), mountVendor()).Times(0); in TEST_F()
286 EXPECT_CALL(mounter(), mountVendor()).Times(2); in TEST_F()
330 EXPECT_CALL(mounter(), mountVendor()).Times(0); in TEST_F()
347 EXPECT_CALL(mounter(), mountVendor()).Times(2); in TEST_F()
368 EXPECT_CALL(mounter(), mountVendor()).Times(0); in TEST_F()
386 EXPECT_CALL(mounter(), mountVendor()).Times(0); in TEST_F()
Dutils-fake.h54 ON_CALL(*this, mountVendor()).WillByDefault(Invoke([&] { in MockPartitionMounter()
65 MOCK_CONST_METHOD0(mountVendor, status_t());
/system/libvintf/
DVintfObject.cpp208 auto mountVendor = [&mounter] { return mounter.mountVendor(); }; in checkCompatibility() local
215 pkg.dev.manifest.get(), mount, mountVendor, &updated.dev.manifest, in checkCompatibility()
226 pkg.dev.matrix.get(), mount, mountVendor, &updated.dev.matrix, in checkCompatibility()
DVintfObjectRecovery.cpp58 status_t mountVendor() const override { in mountVendor() function in android::vintf::details::RecoveryPartitionMounter
Dutils.h62 virtual status_t mountVendor() const { return OK; } in mountVendor() function