HomeSort by relevance Sort by last modified time
    Searched refs:mounter (Results 1 - 8 of 8) sorted by null

  /development/gsi/gsi_util/gsi_util/commands/common/
image_sources.py 37 mounter = composite_mounter.CompositeMounter()
42 mounter.add_by_mount_target(partition, image_source)
44 if mounter.is_empty():
47 return mounter
  /development/gsi/gsi_util/gsi_util/mounters/
composite_mounter.py 19 sub-mounter.
22 the method uses class _MounterFactory to create a mounter and then adds it.
24 class _MounterFactory provides a method to create a mounter by 'mounter_target'.
44 """Create a proper Mounter instance by a string of mount target.
111 file_accessors = [(path_prefix, mounter.mount())
112 for (path_prefix, mounter) in self._mounters]
117 for (_, mounter) in reversed(self._mounters):
118 mounter.unmount()
120 def add_sub_mounter(self, mount_point, mounter):
121 self._mounters.append((mount_point, mounter))
    [all...]
  /system/libvintf/test/
vintf_object_tests.cpp 329 static MockPartitionMounter &mounter() { function
344 Mock::VerifyAndClear(&mounter());
416 mounter().reset();
431 EXPECT_CALL(mounter(), mountSystem()).Times(0);
432 EXPECT_CALL(mounter(), umountSystem()).Times(0);
433 EXPECT_CALL(mounter(), mountVendor()).Times(0);
434 EXPECT_CALL(mounter(), umountVendor()).Times(0);
441 EXPECT_FALSE(mounter().systemMounted());
442 EXPECT_FALSE(mounter().vendorMounted());
449 EXPECT_CALL(mounter(), mountSystem()).Times(2)
    [all...]
  /development/gsi/gsi_util/gsi_util/commands/
pull.py 29 mounter = image_sources.create_composite_mounter_by_args(args)
30 with mounter as file_accessor:
check_compat.py 118 mounter = image_sources.create_composite_mounter_by_args(args)
119 with mounter as file_accessor:
dump.py 88 mounter = image_sources.create_composite_mounter_by_args(args)
89 with mounter as file_accessor:
  /system/libvintf/
VintfObjectRecovery.cpp 83 static details::RecoveryPartitionMounter mounter; local
84 return details::checkCompatibility(xmls, true /* mount */, mounter, error);
VintfObject.cpp 427 const PartitionMounter& mounter, std::string* error,
458 auto mountSystem = [&mounter] { return mounter.mountSystem(); };
459 auto mountVendor = [&mounter] { return mounter.mountVendor(); };
483 (void)mounter.umountSystem(); // ignore errors
484 (void)mounter.umountVendor(); // ignore errors

Completed in 87 milliseconds