Searched refs:jmap (Results 1 - 12 of 12) sorted by relevance

/openjdk10/nashorn/test/script/basic/
H A DJDK-8016239.js31 var jmap = new java.util.HashMap();
32 jmap.put("foo", "bar");
42 "hello", 23, { foo: 33}, jmap
/openjdk10/nashorn/test/script/basic/es6/
H A DJDK-8156743.js41 var jmap = new HashMap();
42 jmap.put(1, 'one');
43 jmap.put(2, 'two');
44 jmap.put(3, 'three');
56 for(var keyvalue of jmap){
64 for(var keyvalue of jmap){
/openjdk10/jdk/test/sun/tools/jmap/
H A DBasicJMapTest.java37 * @summary Unit test for jmap utility
62 OutputAnalyzer output = jmap("-histo");
67 OutputAnalyzer output = jmap("-histo:live");
72 OutputAnalyzer output = jmap("-finalizerinfo");
77 OutputAnalyzer output = jmap("-clstats");
90 File dump = new File("jmap.dump." + System.currentTimeMillis() + ".hprof");
96 output = jmap("-dump:live,format=b,file=" + dump.getName());
98 output = jmap("-dump:format=b,file=" + dump.getName());
116 private static OutputAnalyzer jmap(String... toolArgs) throws Exception { method in class:BasicJMapTest
117 JDKToolLauncher launcher = JDKToolLauncher.createUsingTestJDK("jmap");
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeWeakMap.java48 private final Map<Object, Object> jmap = new WeakHashMap<>(); field in class:NativeWeakMap
72 populateMap(weakMap.jmap, arg, global);
87 map.jmap.put(checkKey(key), value);
104 return map.jmap.get(key);
116 final Map<Object, Object> map = getMap(self).jmap;
135 return !isPrimitive(key) && map.jmap.containsKey(key);
/openjdk10/jdk/make/launcher/
H A DLauncher-jdk.jcmd.gmk36 $(eval $(call SetupBuildLauncher, jmap, \
37 MAIN_CLASS := sun.tools.jmap.JMap, \
/openjdk10/hotspot/test/gc/metaspace/
H A DCompressedClassSpaceSizeInJmapHeap.java27 * @summary Checks that jmap -heap contains the flag CompressedClassSpaceSize
57 JDKToolLauncher jmap = JDKToolLauncher.create("jhsdb")
58 .addToolArg("jmap")
62 ProcessBuilder pb = new ProcessBuilder(jmap.getCommand());
82 throw new Exception("jmap -heap exited with error code: " + exitValue);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DJMap.java49 return "jmap";
175 JMap jmap = new JMap(mode);
176 jmap.execute(args);
/openjdk10/jdk/test/java/util/concurrent/locks/Lock/
H A DTimedAcquireLeak.java76 static final String jmap = javaProgramPath("jmap"); field in class:TimedAcquireLeak
174 match(commandOutputOf(jmap, "-histo:live", childPid),
178 commandOutputOf(jmap,
188 // jmap doesn't work on Windows
271 // On the other hand, jmap is much slower on Solaris...
/openjdk10/jdk/src/jdk.jcmd/share/classes/sun/tools/jmap/
H A DJMap.java26 package sun.tools.jmap;
188 // working directory rather than the directory where jmap
234 System.err.println("Cannot connect to core dump or remote debug server. Use jhsdb jmap instead");
241 System.err.println(" jmap -clstats <pid>");
243 System.err.println(" jmap -finalizerinfo <pid>");
245 System.err.println(" jmap -histo[:live] <pid>");
248 System.err.println(" jmap -dump:<dump-options> <pid>");
257 System.err.println(" Example: jmap -dump:live,format=b,file=heap.bin <pid>");
/openjdk10/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp1119 Node* jmap = jvms->map(); local
1121 if (jmap->req() > i) {
1122 m = jmap->in(i);
/openjdk10/make/
H A DImages.gmk220 jmap.1 \
/openjdk10/jdk/src/java.scripting/share/classes/com/sun/tools/script/shell/
H A Dinit.js89 * var y = jmap(x);
98 function jmap(map) { function

Completed in 337 milliseconds