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

  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageUnmountReceiver.java 35 final String volId = intent.getStringExtra(VolumeInfo.EXTRA_VOLUME_ID);
36 final VolumeInfo vol = storage.findVolumeById(volId);
40 Log.w(TAG, "Missing volume " + volId);
PublicVolumeSettings.java 100 final String volId = getArguments().getString(VolumeInfo.EXTRA_VOLUME_ID);
101 mVolume = mStorageManager.findVolumeById(volId);
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 100 getDevice().executeShellCommand("sm unmount " + vol.volId);
101 getDevice().executeShellCommand("sm mount " + vol.volId);
161 getDevice().executeShellCommand("sm unmount " + vol.volId);
163 getDevice().executeShellCommand("sm mount " + vol.volId);
205 getDevice().executeShellCommand("sm unmount " + vol.volId);
207 getDevice().executeShellCommand("sm mount " + vol.volId);
264 getDevice().executeShellCommand("sm unmount " + vol.volId);
272 getDevice().executeShellCommand("sm mount " + vol.volId);
279 getDevice().executeShellCommand("sm unmount " + vol.volId);
283 getDevice().executeShellCommand("sm mount " + vol.volId);
    [all...]
  /frameworks/base/cmds/sm/src/com/android/commands/sm/
Sm.java 194 final String volId = nextArg();
195 mSm.mount(volId);
199 final String volId = nextArg();
200 mSm.unmount(volId);
204 final String volId = nextArg();
205 mSm.format(volId);
209 final String volId = nextArg();
210 mSm.benchmark(volId);
  /frameworks/base/core/java/android/os/storage/
IMountService.java     [all...]
StorageManager.java 704 public void mount(String volId) {
706 mMountService.mount(volId);
713 public void unmount(String volId) {
715 mMountService.unmount(volId);
722 public void format(String volId) {
724 mMountService.format(volId);
731 public long benchmark(String volId) {
733 return mMountService.benchmark(volId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
MountService.java     [all...]

Completed in 243 milliseconds