Searched refs:bootClassPath (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DBootClassPathMinus.java33 String bootClassPath = System.getProperty("sun.boot.class.path");
34 StringBuffer newPath = new StringBuffer(bootClassPath.length());
35 String[] bootClassPathParts = bootClassPath.split(java.io.File.pathSeparator, 0);
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DPathSearchingVirtualMachine.java51 List<String> bootClassPath(); method in interface:PathSearchingVirtualMachine
/openjdk7/jdk/test/javax/management/ImplementationVersion/
H A DImplVersionTest.java73 String bootClassPath = System.getProperty("sun.boot.class.path");
74 if (bootClassPath != null &&
75 bootClassPath.indexOf("jmxri.jar") != -1)
79 " -Xbootclasspath/p:" + bootClassPath +
/openjdk7/jdk/test/javax/management/remote/mandatory/version/
H A DImplVersionTest.java70 String bootClassPath = System.getProperty("sun.boot.class.path");
75 " -Xbootclasspath/p:" + bootClassPath +
/openjdk7/langtools/test/tools/javac/api/
H A DT6430241.java59 bootClassPath = System.getProperty("sun.boot.class.path");
71 testCommandLine(false, "-Xbootclasspath:" + bootClassPath);
96 testSimpleAPI(false, "-Xbootclasspath:" + bootClassPath);
123 for (String f: bootClassPath.split(File.pathSeparator)) {
232 String bootClassPath; field in class:T6430241
/openjdk7/jdk/test/java/lang/instrument/BootClassPath/
H A DSetup.java50 String bootClassPath = "boot" + suffix();
52 String bootDir = workDir + fileSeparator + bootClassPath;
74 byte[] value = bootClassPath.getBytes("UTF-8");
/openjdk7/jdk/src/share/instrument/
H A DInvocationAdapter.c157 char * bootClassPath; local
227 bootClassPath = getAttribute(attributes, "Boot-Class-Path");
228 if (bootClassPath != NULL) {
229 appendBootClassPath(agent, jarfile, bootClassPath);
314 char * bootClassPath; local
385 bootClassPath = getAttribute(attributes, "Boot-Class-Path");
386 if (bootClassPath != NULL) {
387 appendBootClassPath(agent, jarfile, bootClassPath);
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/
H A DMain.java295 if (batch.bootClassPath != null) {
301 batch.bootClassPath = args[++i];
302 assert batch.bootClassPath != null;
563 if (batch.bootClassPath != null) {
565 javadocArgs.add(batch.bootClassPath);
627 if (batch.bootClassPath != null) {
629 javacArgs.add(batch.bootClassPath);
672 String bootClassPath = null; // -bootclasspath field in class:Main.Batch
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/sym/
H A DCreateSymbols.java144 ArrayList<File> bootClassPath = new ArrayList<File>();
145 bootClassPath.add(jarFile);
148 bootClassPath.add(path);
150 System.err.println("Using boot class path = " + bootClassPath);
151 fm.setLocation(StandardLocation.PLATFORM_CLASS_PATH, bootClassPath);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java174 public Collection<File> bootClassPath() { method in class:Paths
468 Path bootClassPath = getPathForLocation(PLATFORM_CLASS_PATH);
471 classSearchPath.addAll(bootClassPath);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DLauncher.java58 private static String bootClassPath = field in class:Launcher
363 if (bootClassPath != null) {
367 File[] classPath = getClassPath(bootClassPath);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java237 files = searchPaths.bootClassPath();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVirtualMachineImpl.java776 public List bootClassPath() { method in class:VirtualMachineImpl
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java1386 public List<String> bootClassPath() { method in class:VirtualMachineImpl
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java1537 MessageOutput.println("bootclasspath:", vm.bootClassPath().toString());

Completed in 54 milliseconds