Searched defs:getCPU (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DPlatformInfo.java58 public static String getCPU() throws UnsupportedPlatformException { method in class:PlatformInfo
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebugger.java83 public String getCPU() throws DebuggerException; method in interface:Debugger
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebugger.java53 public String getCPU() throws RemoteException; method in interface:RemoteDebugger
H A DRemoteDebuggerServer.java56 public String getCPU() throws RemoteException { method in class:RemoteDebuggerServer
57 return debugger.getCPU();
H A DRemoteDebuggerClient.java57 String cpu = remoteDebugger.getCPU();
169 public String getCPU() { method in class:RemoteDebuggerClient
171 return remoteDebugger.getCPU();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyDebugger.java83 public String getCPU() { method in class:DummyDebugger
84 return PlatformInfo.getCPU();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java204 if (getCPU().equals("ia64")) {
330 public String getCPU() { method in class:BsdDebuggerLocal
331 return PlatformInfo.getCPU();
554 String cpu = getCPU();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebuggerLocal.java202 if (getCPU().equals("ia64")) {
328 public String getCPU() { method in class:LinuxDebuggerLocal
329 return PlatformInfo.getCPU();
547 String cpu = getCPU();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java113 String cpu = PlatformInfo.getCPU();
211 public String getCPU() { method in class:WindbgDebuggerLocal
212 return PlatformInfo.getCPU();
236 if (! getCPU().equals("ia64")) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebuggerLocal.java75 final String cpu = PlatformInfo.getCPU();
97 throw new RuntimeException("Thread access for CPU architecture " + PlatformInfo.getCPU() + " not yet supported");
215 public String getCPU() { method in class:ProcDebuggerLocal
216 return PlatformInfo.getCPU();
388 if (PlatformInfo.getCPU().equals("sparc") ||
389 PlatformInfo.getCPU().equals("amd64") )
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java462 public String getCPU() { method in class:VM
464 return debugger.getCPU();
466 return PlatformInfo.getCPU();

Completed in 59 milliseconds