Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DSystemTest.java189 String bootClassPath = System.getProperty("org.apache.harmony.boot.class.path"); in test_getProperty_bootClassPath() local
191 if (bootClassPath == null) { in test_getProperty_bootClassPath()
192 bootClassPath = System.getProperty("sun.boot.class.path"); in test_getProperty_bootClassPath()
195 if (bootClassPath != null in test_getProperty_bootClassPath()
196 && (bootClassPath.indexOf(File.pathSeparator + File.pathSeparator) >= 0)) { in test_getProperty_bootClassPath()
197 fail("Boot class path contains extra path separator: " + bootClassPath); in test_getProperty_bootClassPath()
/libcore/libart/src/main/java/dalvik/system/
DVMRuntime.java89 public native String bootClassPath(); in bootClassPath() method in VMRuntime
/libcore/ojluni/src/main/java/java/lang/
DSystem.java964 p.put("java.boot.class.path", runtime.bootClassPath()); in initUnchangeableSystemProperties()