Searched defs:is64Bit (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DMemoryViewer.java36 public MemoryViewer(final Debugger debugger, boolean is64Bit) { argument
38 final MemoryPanel memory = new MemoryPanel(debugger, is64Bit);
H A DAnnotatedMemoryPanel.java47 private boolean is64Bit; field in class:AnnotatedMemoryPanel
101 public AnnotatedMemoryPanel(Debugger debugger, boolean is64Bit, Address addrValue, Address addrLow, Address addrHigh) { argument
103 init(debugger, is64Bit, addressToBigInt(addrValue), addressToBigInt(addrLow), addressToBigInt(addrHigh));
106 public AnnotatedMemoryPanel(Debugger debugger, boolean is64Bit ) {
108 init(debugger, is64Bit, defaultMemoryLocation(is64Bit), defaultMemoryLow(is64Bit), defaultMemoryHigh(is64Bit));
283 private void init(Debugger debugger, boolean is64Bit, BigInteger addrValue, BigInteger addrLow, BigInteger addrHigh) { argument
284 this.is64Bit
368 defaultMemoryLocation(boolean is64Bit) argument
378 defaultMemoryLow(boolean is64Bit) argument
388 defaultMemoryHigh(boolean is64Bit) argument
[all...]
H A DMemoryPanel.java40 private boolean is64Bit; field in class:MemoryPanel
81 public MemoryPanel(final Debugger debugger, boolean is64Bit) { argument
84 this.is64Bit = is64Bit;
85 if (is64Bit) {
478 if (is64Bit) {
581 if (is64Bit) {
/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java81 static final boolean is64Bit = field in class:TestHelper
118 if (is64Bit && is32Bit) {
121 if (!is64Bit && !is32Bit) {

Completed in 52 milliseconds