/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | bytecodeInterpreter_zero.cpp | 48 const char *BytecodeInterpreter::name_of_field_at_address(address addr) { argument 49 #define DO(member) {if (addr == (address) &(member)) return XSTR(member);} 66 if (addr > (address) &_result && addr < (address) (&_result + 1))
|
/openjdk7/jdk/test/java/net/DatagramSocket/ |
H A D | B6411513.java | 42 InetAddress addr = addrs.nextElement(); 49 if (addr instanceof Inet4Address) { 50 System.out.printf("%s : %s\n", nic.getName(), addr); 51 testConnectedUDP(addr); 64 private static void testConnectedUDP(InetAddress addr) throws Exception { argument 66 DatagramSocket s = new DatagramSocket(0, addr); 67 DatagramSocket ss = new DatagramSocket(0, addr);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/ |
H A D | SPARCV9ReturnInstruction.java | 31 public SPARCV9ReturnInstruction(SPARCRegisterIndirectAddress addr) { argument 32 super("return", addr);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | NotInHeapException.java | 28 public NotInHeapException(long addr) { argument 29 super(addr); 32 public NotInHeapException(String detail, long addr) { argument 33 super(detail, addr);
|
H A D | UnalignedAddressException.java | 28 public UnalignedAddressException(long addr) { argument 29 super(addr); 32 public UnalignedAddressException(String detail, long addr) { argument 33 super(detail, addr);
|
H A D | UnmappedAddressException.java | 28 public UnmappedAddressException(long addr) { argument 29 super(addr); 32 public UnmappedAddressException(String detail, long addr) { argument 33 super(detail, addr);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | CMSPermGenGen.java | 30 public CMSPermGenGen(Address addr) { argument 31 super(addr);
|
H A D | CardGeneration.java | 34 public CardGeneration(Address addr) { argument 35 super(addr);
|
H A D | ContigPermSpace.java | 32 public ContigPermSpace(Address addr) { argument 33 super(addr);
|
H A D | EdenSpace.java | 37 public EdenSpace(Address addr) { argument 38 super(addr);
|
H A D | OffsetTableContigSpace.java | 32 public OffsetTableContigSpace(Address addr) { argument 33 super(addr);
|
H A D | ParNewGeneration.java | 30 public ParNewGeneration(Address addr) { argument 31 super(addr);
|
H A D | PermGen.java | 37 public PermGen(Address addr) { argument 38 super(addr);
|
H A D | TenuredSpace.java | 32 public TenuredSpace(Address addr) { argument 33 super(addr);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ |
H A D | WatcherThread.java | 33 public WatcherThread(Address addr) { argument 34 super(addr);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/ |
H A D | AddressField.java | 37 public Address getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JBooleanField.java | 37 public boolean getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JByteField.java | 37 public byte getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JCharField.java | 37 public char getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JDoubleField.java | 37 public double getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JFloatField.java | 37 public float getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JIntField.java | 37 public int getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JLongField.java | 37 public long getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | JShortField.java | 37 public short getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|
H A D | NarrowOopField.java | 36 public OopHandle getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
|