Searched refs:runtime (Results 301 - 325 of 865) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DID.m30 #include <objc/runtime.h>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/runtime/
H A DRuntimeClassInfo.java26 package com.sun.xml.internal.bind.v2.model.runtime;
36 import com.sun.xml.internal.bind.v2.runtime.reflect.Accessor;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DBridgeContextImpl.java26 package com.sun.xml.internal.bind.v2.runtime;
34 import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl;
H A DCompositeStructureBeanInfo.java26 package com.sun.xml.internal.bind.v2.runtime;
36 import com.sun.xml.internal.bind.v2.runtime.unmarshaller.Loader;
37 import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/bsd_amd64/
H A DBsdAMD64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.bsd_amd64;
33 import sun.jvm.hotspot.runtime.*;
34 import sun.jvm.hotspot.runtime.amd64.*;
35 import sun.jvm.hotspot.runtime.x86.*;
72 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_amd64/
H A DLinuxAMD64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.linux_amd64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.amd64.*;
33 import sun.jvm.hotspot.runtime.x86.*;
68 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/solaris_amd64/
H A DSolarisAMD64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.solaris_amd64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.amd64.*;
33 import sun.jvm.hotspot.runtime.x86.*;
70 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_amd64/
H A DWin32AMD64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.win32_amd64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.amd64.*;
33 import sun.jvm.hotspot.runtime.x86.*;
71 return lastJavaFPField.getValue(addr.addOffsetTo(sun.jvm.hotspot.runtime.JavaThread.getAnchorField().getOffset()));
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpecList.java48 final ExecutionManager runtime; field in class:EventRequestSpecList
50 EventRequestSpecList(ExecutionManager runtime) { argument
51 this.runtime = runtime;
145 return (Vector<SpecListener>)runtime.specListeners.clone();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java28 import sun.jvm.hotspot.runtime.VMObject;
29 import sun.jvm.hotspot.runtime.JavaThread;
30 import sun.jvm.hotspot.runtime.OSThread;
31 //import sun.jvm.hotspot.runtime.StackFrameStream;
32 import sun.jvm.hotspot.runtime.JavaVFrame;
33 import sun.jvm.hotspot.runtime.JavaThreadState;
34 import sun.jvm.hotspot.runtime.MonitorInfo;
35 import sun.jvm.hotspot.runtime.ObjectMonitor;
54 ThreadReferenceImpl(VirtualMachine aVm, sun.jvm.hotspot.runtime.JavaThread aRef) {
303 sun.jvm.hotspot.runtime
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeClassInfoImpl.java51 import com.sun.xml.internal.bind.v2.model.runtime.RuntimeClassInfo;
52 import com.sun.xml.internal.bind.v2.model.runtime.RuntimeElement;
53 import com.sun.xml.internal.bind.v2.model.runtime.RuntimePropertyInfo;
54 import com.sun.xml.internal.bind.v2.model.runtime.RuntimeValuePropertyInfo;
55 import com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationException;
56 import com.sun.xml.internal.bind.v2.runtime.Location;
57 import com.sun.xml.internal.bind.v2.runtime.Name;
58 import com.sun.xml.internal.bind.v2.runtime.Transducer;
59 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
60 import com.sun.xml.internal.bind.v2.runtime
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DLaunchTool.java56 private final ExecutionManager runtime; field in class:LaunchTool
127 private LaunchTool(ExecutionManager runtime) { argument
128 this.runtime = runtime;
227 if (runtime.explictStart(connector, args)) {
264 static void queryAndLaunchVM(ExecutionManager runtime) argument
266 LaunchTool lt = new LaunchTool(runtime);
H A DCommandInterpreter.java50 private ExecutionManager runtime; field in class:CommandInterpreter
64 this.runtime = env.getExecutionManager();
122 //### Why not use runtime.allThreads().iterator() ?
123 return new ThreadIterator(runtime.topLevelThreadGroups());
133 return new ThreadGroupIterator(runtime.topLevelThreadGroups());
140 defaultThreadGroup = runtime.systemThreadGroup();
158 for (ReferenceType refType : runtime.allClasses()) {
201 List<ReferenceType> results = runtime.findClassesMatchingPattern(pattern);
371 runtime.run(suspended,
396 runtime
[all...]
/openjdk7/hotspot/test/testlibrary/com/oracle/java/testlibrary/
H A DProcessTools.java94 RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();
95 Field jvm = runtime.getClass().getDeclaredField("jvm");
98 VMManagement mgmt = (sun.management.VMManagement) jvm.get(runtime);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64CurrentFrameGuess.java25 package sun.jvm.hotspot.runtime.amd64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.x86.*;
56 private static final boolean DEBUG = System.getProperty("sun.jvm.hotspot.runtime.amd64.AMD64Frame.DEBUG")
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/linux_ia64/
H A DLinuxIA64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.linux_ia64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.ia64.*;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/win32_ia64/
H A DWin32IA64JavaThreadPDAccess.java25 package sun.jvm.hotspot.runtime.win32_ia64;
31 import sun.jvm.hotspot.runtime.*;
32 import sun.jvm.hotspot.runtime.ia64.*;
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java69 private File runtime = null; field in class:AppBundlerTask
124 return runtime;
127 public void setRuntime(File runtime) { argument
128 this.runtime = runtime;
227 if (runtime != null) {
228 if (!runtime.exists()) {
232 if (!runtime.isDirectory()) {
233 throw new IllegalStateException("Invalid runtime.");
287 // Copy runtime t
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DForkXmlOutput.java26 package com.sun.xml.internal.bind.v2.runtime.output;
32 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
33 import com.sun.xml.internal.bind.v2.runtime.Name;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DAdaptedLister.java26 package com.sun.xml.internal.bind.v2.runtime.reflect;
31 import com.sun.xml.internal.bind.v2.runtime.Coordinator;
32 import com.sun.xml.internal.bind.v2.runtime.XMLSerializer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DScope.java26 package com.sun.xml.internal.bind.v2.runtime.unmarshaller;
29 import com.sun.xml.internal.bind.v2.runtime.reflect.Accessor;
30 import com.sun.xml.internal.bind.v2.runtime.reflect.Lister;
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DProcessTools.java102 RuntimeMXBean runtime = ManagementFactory.getRuntimeMXBean();
103 Field jvm = runtime.getClass().getDeclaredField("jvm");
106 VMManagement mgmt = (sun.management.VMManagement) jvm.get(runtime);
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A DSymbol.java26 package com.sun.java_cup.internal.runtime;
H A Dvirtual_parse_stack.java27 package com.sun.java_cup.internal.runtime;
42 * @see com.sun.java_cup.internal.runtime.lr_parser
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSortSettings.java29 import com.sun.org.apache.xalan.internal.xsltc.runtime.AbstractTranslet;
71 * @param translet {@link com.sun.org.apache.xalan.internal.xsltc.runtime.AbstractTranslet}

Completed in 195 milliseconds

<<11121314151617181920>>