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 99 final String volId = getArguments().getString(VolumeInfo.EXTRA_VOLUME_ID);
100 if (volId != null) {
101 mVolume = mStorageManager.findVolumeById(volId);
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
AdoptableHostTest.java 118 getDevice().executeShellCommand("sm unmount " + vol.volId);
119 getDevice().executeShellCommand("sm mount " + vol.volId);
181 getDevice().executeShellCommand("sm unmount " + vol.volId);
183 getDevice().executeShellCommand("sm mount " + vol.volId);
225 getDevice().executeShellCommand("sm unmount " + vol.volId);
227 getDevice().executeShellCommand("sm mount " + vol.volId);
288 getDevice().executeShellCommand("sm unmount " + vol.volId);
296 getDevice().executeShellCommand("sm mount " + vol.volId);
307 getDevice().executeShellCommand("sm unmount " + vol.volId);
311 getDevice().executeShellCommand("sm mount " + vol.volId);
    [all...]
  /frameworks/base/cmds/sm/src/com/android/commands/sm/
Sm.java 215 final String volId = nextArg();
216 mSm.mount(volId);
220 final String volId = nextArg();
221 mSm.unmount(volId);
225 final String volId = nextArg();
226 mSm.format(volId);
230 final String volId = nextArg();
232 mSm.benchmark(volId, new IVoldTaskListener.Stub() {
  /frameworks/base/services/core/java/com/android/server/
StorageManagerService.java 449 IObbActionListener token, int nonce, String volId) {
455 this.volId = volId;
469 String volId;
497 sb.append(",volId=").append(volId);
    [all...]

Completed in 203 milliseconds