HomeSort by relevance Sort by last modified time
    Searched defs:volId (Results 1 - 5 of 5) 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...]

Completed in 81 milliseconds