HomeSort by relevance Sort by last modified time
    Searched defs:unmount (Results 1 - 10 of 10) sorted by null

  /system/vold/
VolumeBase.cpp 182 unmount();
215 status_t VolumeBase::unmount() { function in class:android::vold::VolumeBase
217 LOG(WARNING) << getId() << " unmount requires state mounted";
237 unmount();
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreference.java 107 final ImageView unmount = (ImageView) view.findViewById(R.id.unmount); local
108 if (unmount != null) {
109 unmount.setImageTintList(ColorStateList.valueOf(Color.parseColor("#8a000000")));
110 unmount.setOnClickListener(mUnmountListener);
PrivateVolumeSettings.java 79 // TODO: disable unmount when providing over MTP/PTP
398 final MenuItem unmount = menu.findItem(R.id.storage_unmount); local
408 unmount.setVisible(false);
415 unmount.setVisible(mVolume.isMountedReadable());
    [all...]
  /external/autotest/client/bin/
partition.py 285 Unmount a mounted partition
290 p.unmount(record=False)
363 parallel(partitions, 'unmount') # unmount all partitions in parallel
446 self.unmount(ignore_status=True, record=False)
484 self.unmount()
718 all mounts on this mountpoint and unmount them.
748 def unmount(self, ignore_status=False, record=True): member in class:partition
    [all...]
  /external/autotest/client/cros/
cryptohome.py 235 """Unmount the given user's vault.
240 __run_cmd(CRYPTOHOME_CMD + ' --action=unmount')
243 raise ChromiumOSError('Cryptohome did not unmount the user.')
452 def unmount(self, user): member in class:CryptohomeProxy
455 Returns True if the unmount suceeds or false otherwise.
456 TODO(ellyjones): Once there's a per-user unmount method, use it. See
459 return self.__call(self.iface.Unmount)
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' %
  /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);
  /frameworks/base/core/java/android/os/storage/
IMountService.java 169 * Safely unmount external storage at given mount point. The unmount
516 * unmount the image. MountService will call back to the supplied
999 public void unmount(String volId) throws RemoteException { method in class:IMountService.Stub.Proxy
2456 public void unmount(String volId) throws RemoteException; method in interface:IMountService
    [all...]
StorageManager.java 483 * Unmount an Opaque Binary Blob (OBB) file asynchronously. If the
485 * unmount the given OBB (even the calling application).
497 * @param force whether to kill any programs using this in order to unmount
500 * @return whether the unmount call was successfully queued or not
713 public void unmount(String volId) { method in class:StorageManager
715 mMountService.unmount(volId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
MountService.java 683 unmount(vol.getId());
1754 public void unmount(String volId) { method in class:MountService
    [all...]

Completed in 4472 milliseconds