HomeSort by relevance Sort by last modified time
    Searched refs:unmount (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/autotest/client/site_tests/platform_CryptohomeMigrateKey/
platform_CryptohomeMigrateKey.py 19 if not self.proxy.unmount(user):
20 raise error.TestFail('Could not unmount good user.')
27 if not self.proxy.unmount(user):
28 raise error.TestFail('Could not unmount good user.')
37 if not self.proxy.unmount(user):
38 raise error.TestFail('Could not unmount bad user.')
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreference.java 108 final ImageView unmount = (ImageView) view.findViewById(R.id.unmount); local
109 if (unmount != null) {
110 unmount.setImageTintList(ColorStateList.valueOf(Color.parseColor("#8a000000")));
111 unmount.setOnClickListener(mUnmountListener);
  /external/autotest/client/site_tests/platform_CryptohomeKeyEviction/
platform_CryptohomeKeyEviction.py 42 self._cryptohome_proxy.unmount(self.user)
  /external/autotest/client/site_tests/platform_CryptohomeMount/
platform_CryptohomeMount.py 28 # Unmount the directory
29 if not proxy.unmount(test_user):
30 raise error.TestFail('Failed to unmount test user')
34 raise error.TestFail('Cryptohome mounted after unmount!')
  /external/autotest/client/site_tests/platform_CryptohomeMultiple/
platform_CryptohomeMultiple.py 22 if not self.cryptohome_proxy.unmount(user):
23 raise error.TestFail('Unmount failed for %s' % user)
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 129 image.unmount()
154 self.cros_disks.unmount(expected_mount_path, ['lazy'])
155 self.cros_disks.unmount(device_file, ['lazy'])
  /external/autotest/client/site_tests/platform_CrosDisksFilesystem/
platform_CrosDisksFilesystem.py 52 image.unmount()
76 self.cros_disks.unmount(device_file, ['lazy'])
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
SettingsStorageService.java 40 public static final String ACTION_UNMOUNT = "com.android.tv.settings.device.storage.UNMOUNT";
62 public static void unmount(Context context, String volumeId) { method in class:SettingsStorageService
104 throw new IllegalArgumentException("No volume ID specified for unmount: "
107 unmount(volumeId);
178 private void unmount(String volumeId) { method in class:SettingsStorageService.Impl
185 Log.d(TAG, "Trying to unmount " + volumeId);
186 storageManager.unmount(volumeId);
188 Log.d(TAG, "Volume not found, skipping unmount");
204 Log.d(TAG, "Could not unmount", e);
  /external/autotest/client/tests/parallel_dd/
parallel_dd.py 99 self.fs.unmount()
120 self.fs.unmount()
136 self.fs.unmount()
  /system/vold/
VolumeBase.cpp 180 unmount();
213 status_t VolumeBase::unmount() { function in class:android::vold::VolumeBase
215 LOG(WARNING) << getId() << " unmount requires state mounted";
235 unmount();
VolumeBase.h 43 * When an unmount is requested, the volume recursively unmounts any stacked
101 status_t unmount();
  /build/make/tools/releasetools/
edify_generator.py 320 def Unmount(self, mount_point):
321 self.script.append('unmount("%s");' % mount_point)
326 self.script.append('unmount("%s");' % (p,))
  /system/update_engine/common/
test_utils.h 104 // Class to unmount FS when object goes out of scope
115 void set_should_unmount(bool unmount) { should_unmount_ = unmount; }
  /external/toolchain-utils/dejagnu/
gdb_dejagnu.py 217 self.MountSource(unmount=False)
263 def MountSource(self, unmount=False):
265 if unmount:
run_dejagnu.py 75 '\'mount\' (unmount gcc source and '
173 self.MountGccSourceAndBuildDir(unmount=True)
175 print 'Warning: failed to unmount gcc source/build directory.'
344 def MountGccSourceAndBuildDir(self, unmount=False):
352 if unmount:
353 if mp.UnMount():
354 raise RuntimeError('Failed to unmount {0}'.format(mp.mount_dir))
  /development/samples/Obb/src/com/example/android/obbapp/
ObbMountActivity.java 34 * provides two buttons: one to mount an OBB and another to unmount an OBB. The
58 ((Button) findViewById(R.id.unmount)).setOnClickListener(mUnmountListener);
  /external/autotest/client/site_tests/login_UserPolicyKeys/
login_UserPolicyKeys.py 124 self._cryptohome_proxy.unmount(ownership.TESTUSER)
  /external/autotest/client/site_tests/platform_CrosDisksDBus/
platform_CrosDisksDBus.py 160 self.cros_disks.unmount('/dev/nonexistent', [])
  /external/autotest/client/cros/
cros_disks.py 307 def unmount(self, path, options=None): member in class:CrosDisksClient
308 """Invokes the CrosDisks Unmount method.
311 path: The device or mount path to unmount.
316 self.interface.Unmount(path, options)
661 self.unmount()
720 def unmount(self): member in class:VirtualFilesystemImage
731 message = ('Failed to unmount virtual filesystem image "%s": %s' %
  /external/selinux/libsepol/tests/policies/test-expander/
alias-base.conf 149 unmount
role-base.conf 149 unmount
user-base.conf 149 unmount
  /external/selinux/libsepol/tests/policies/test-hooks/
cmp_policy.conf 149 unmount
small-base.conf 149 unmount
  /frameworks/base/core/java/android/os/storage/
IStorageManager.aidl 66 * Safely unmount external storage at given mount point. The unmount is an
70 * @param force whether or not to forcefully unmount it (e.g. even if programs are using this
154 * any program using it will be forcibly killed to unmount the image.
268 void unmount(in String volId) = 48;

Completed in 832 milliseconds

1 2 3