Home
last modified time | relevance | path

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

/external/caliper/caliper/src/main/java/com/google/caliper/config/
DVmConfig.java43 private final File vmHome; field in VmConfig
51 this.vmHome = builder.vmHome; in VmConfig()
56 public VmConfig(File vmHome, Iterable<String> options, File vmExecutable, Platform platform) { in VmConfig() argument
58 this.vmHome = checkNotNull(vmHome); in VmConfig()
63 public File vmHome() { in vmHome() method in VmConfig
64 return vmHome; in vmHome()
69 vmExecutable = platform.vmExecutable(vmHome); in vmExecutable()
100 && this.vmHome.equals(that.vmHome) in equals()
108 return Objects.hashCode(platform, vmHome, options); in hashCode()
114 .add("vmHome", vmHome) in toString()
[all …]
/external/caliper/caliper/src/main/java/com/google/caliper/platform/dalvik/
DDalvikPlatform.java57 public File vmExecutable(File vmHome) { in vmExecutable() argument
58 File bin = new File(vmHome, "bin"); in vmExecutable()
60 "Could not find %s under android root %s", bin, vmHome); in vmExecutable() local
133 String vmHome = vmAndroidRoot; in customVmHomeDir() local
139 File androidRootFile = new File(vmHome); in customVmHomeDir()
/external/caliper/caliper/src/main/java/com/google/caliper/platform/
DPlatform.java47 public abstract File vmExecutable(File vmHome); in vmExecutable() argument
/external/caliper/caliper/src/test/java/com/google/caliper/config/
DCaliperConfigTest.java54 assertEquals(new File(System.getProperty("java.home")), defaultVmConfig.vmHome()); in getDefaultVmConfig()