Home
last modified time | relevance | path

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

/external/caliper/caliper/src/main/java/com/google/caliper/platform/dalvik/
DDalvikPlatform.java139 File androidRootFile = new File(vmHome); in customVmHomeDir() local
141 if (!androidRootFile.exists()) { in customVmHomeDir()
142 throw new IllegalStateException(String.format("%s does not exist", androidRootFile)); in customVmHomeDir()
143 } else if (!androidRootFile.isDirectory()) { in customVmHomeDir()
144 throw new IllegalStateException(String.format("%s is not a directory", androidRootFile)); in customVmHomeDir()
147 return androidRootFile; in customVmHomeDir()