Home
last modified time | relevance | path

Searched refs:volType (Results 1 – 1 of 1) sorted by relevance

/platform_testing/tests/functional/externalstorage/src/com/android/functional/externalstoragetests/
DExternalStorageHelper.java177 public String getAdoptionVolumeId(String volType) throws InterruptedException { in getAdoptionVolumeId() argument
178 return getAdoptionVolumeInfo(volType).volId; in getAdoptionVolumeId()
181 public String getAdoptionVolumeUuid(String volType) throws InterruptedException { in getAdoptionVolumeUuid() argument
182 return getAdoptionVolumeInfo(volType).uuid; in getAdoptionVolumeUuid()
185 public LocalVolumeInfo getAdoptionVolumeInfo(String volType) throws InterruptedException { in getAdoptionVolumeInfo() argument
189 if (null != (lines = executeShellCommand("sm list-volumes " + volType).split("\n"))) { in getAdoptionVolumeInfo()
192 if (info.volId.startsWith(volType) && "mounted".equals(info.state)) { in getAdoptionVolumeInfo()