Searched defs:addr (Results 1 - 25 of 597) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.cpp48 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 DB6411513.java42 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 DSPARCV9ReturnInstruction.java31 public SPARCV9ReturnInstruction(SPARCRegisterIndirectAddress addr) { argument
32 super("return", addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DNotInHeapException.java28 public NotInHeapException(long addr) { argument
29 super(addr);
32 public NotInHeapException(String detail, long addr) { argument
33 super(detail, addr);
H A DUnalignedAddressException.java28 public UnalignedAddressException(long addr) { argument
29 super(addr);
32 public UnalignedAddressException(String detail, long addr) { argument
33 super(detail, addr);
H A DUnmappedAddressException.java28 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 DCMSPermGenGen.java30 public CMSPermGenGen(Address addr) { argument
31 super(addr);
H A DCardGeneration.java34 public CardGeneration(Address addr) { argument
35 super(addr);
H A DContigPermSpace.java32 public ContigPermSpace(Address addr) { argument
33 super(addr);
H A DEdenSpace.java37 public EdenSpace(Address addr) { argument
38 super(addr);
H A DOffsetTableContigSpace.java32 public OffsetTableContigSpace(Address addr) { argument
33 super(addr);
H A DParNewGeneration.java30 public ParNewGeneration(Address addr) { argument
31 super(addr);
H A DPermGen.java37 public PermGen(Address addr) { argument
38 super(addr);
H A DTenuredSpace.java32 public TenuredSpace(Address addr) { argument
33 super(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DWatcherThread.java33 public WatcherThread(Address addr) { argument
34 super(addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DAddressField.java37 public Address getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJBooleanField.java37 public boolean getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJByteField.java37 public byte getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJCharField.java37 public char getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJDoubleField.java37 public double getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJFloatField.java37 public float getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJIntField.java37 public int getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJLongField.java37 public long getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJShortField.java37 public short getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DNarrowOopField.java36 public OopHandle getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument

Completed in 96 milliseconds

1234567891011>>