Searched refs:dumpFile (Results 1 - 4 of 4) sorted by relevance
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/ |
H A D | HeapDumper.java | 39 private String dumpFile; field in class:HeapDumper 41 public HeapDumper(String dumpFile) { argument 42 this.dumpFile = dumpFile; 54 System.out.println("Dumping heap to " + dumpFile + " ..."); 56 new HeapHprofBinWriter().write(dumpFile);
|
/openjdk7/jdk/src/share/classes/java/lang/invoke/ |
H A D | InvokerBytecodeGenerator.java | 158 File dumpFile = new File(DUMP_CLASS_FILES_DIR, dumpName+".class"); 159 dumpFile.getParentFile().mkdirs(); 160 FileOutputStream file = new FileOutputStream(dumpFile);
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | os_windows.cpp | 930 HANDLE dumpFile; local 972 dumpFile = CreateFile(buffer, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); 974 if (dumpFile == INVALID_HANDLE_VALUE) { 992 if (_MiniDumpWriteDump(hProcess, processId, dumpFile, dumpType, pmei, NULL, NULL) == false && 993 _MiniDumpWriteDump(hProcess, processId, dumpFile, (MINIDUMP_TYPE)MiniDumpWithFullMemory, pmei, NULL, NULL) == false) { 999 CloseHandle(dumpFile);
|
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
H A D | BandStructure.java | 2387 File dumpFile = new File(dumpDir, name+ext); 2388 Utils.log.info("Dumping "+b+" to "+dumpFile); 2389 return new BufferedOutputStream(new FileOutputStream(dumpFile));
|
Completed in 402 milliseconds