Searched refs:addr (Results 51 - 75 of 858) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCV9PrefetchInstruction.java31 final private SPARCRegisterIndirectAddress addr; field in class:SPARCV9PrefetchInstruction
41 public SPARCV9PrefetchInstruction(String name, SPARCRegisterIndirectAddress addr, int prefetchFcn) { argument
43 this.addr = addr;
52 buf.append(addr.toString());
63 return addr;
H A DSPARCV9RegisterBranchInstruction.java31 final protected PCRelativeAddress addr; field in class:SPARCV9RegisterBranchInstruction
37 public SPARCV9RegisterBranchInstruction(String name, PCRelativeAddress addr, argument
41 this.addr = addr;
49 long address = addr.getDisplacement() + currentPc;
62 return addr;
H A DAlternateSpaceLdstubDecoder.java35 SPARCRegisterIndirectAddress addr,
38 setAddressSpace(instruction, addr);
39 return factory.newLdstubInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceLoadDecoder.java35 SPARCRegisterIndirectAddress addr,
38 setAddressSpace(instruction, addr);
39 return factory.newLoadInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceStoreDecoder.java35 SPARCRegisterIndirectAddress addr,
38 setAddressSpace(instruction, addr);
39 return factory.newStoreInstruction(name, op3, addr, rd, dataType);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
H A DAlternateSpaceSwapDecoder.java35 SPARCRegisterIndirectAddress addr,
38 setAddressSpace(instruction, addr);
39 return factory.newSwapInstruction(name, addr, rd);
34 decodeMemoryInstruction(int instruction, SPARCRegisterIndirectAddress addr, SPARCRegister rd, SPARCInstructionFactory factory) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DJNIHandleAccessor.java32 private Address addr; field in class:JNIHandleAccessor
35 JNIHandleAccessor(Address addr, ObjectHeap heap) { argument
36 this.addr = addr;
42 Address handle = addr.getAddressAt(0);
48 Address handle = addr.getAddressAt(0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicFieldWrapper.java64 public boolean getJBoolean (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException { argument
65 return field.getJBoolean(addr);
67 public byte getJByte (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException { argument
68 return field.getJByte(addr);
70 public char getJChar (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException { argument
71 return field.getJChar(addr);
73 public double getJDouble (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException { argument
74 return field.getJDouble(addr);
76 public float getJFloat (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException { argument
77 return field.getJFloat(addr);
79 getJInt(Address addr) argument
82 getJLong(Address addr) argument
85 getJShort(Address addr) argument
88 getCInteger(Address addr, CIntegerType type) argument
91 getAddress(Address addr) argument
94 getOopHandle(Address addr) argument
98 getNarrowOopHandle(Address addr) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.inline.hpp62 size_t OneContigSpaceCardGeneration::block_size(const HeapWord* addr) const {
63 if (addr < the_space()->top()) return oop(addr)->size();
65 assert(addr == the_space()->top(), "non-block head arg to block_size");
70 bool OneContigSpaceCardGeneration::block_is_obj(const HeapWord* addr) const {
71 return addr < the_space()->top();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DProcessControl.java76 public void setBreakpoint(Address addr) argument
85 public void clearBreakpoint(Address addr) throws DebuggerException; argument
88 public boolean isBreakpointSet(Address addr) throws DebuggerException; argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVMObjectFactory.java48 public static Object newObject(Class clazz, Address addr) argument
51 if (addr == null) {
58 return c.newInstance(new Object[] { addr });
H A DStubRoutines.java53 Address addr = callStubReturnAddressField.getValue();
54 if (addr == null) {
55 return (addr == returnPC);
57 return (addr.equals(returnPC));
H A DVirtualSpace.java54 public VirtualSpace(Address addr) { argument
55 super(addr);
58 public Address low() { return lowField.getValue(addr); }
59 public Address high() { return highField.getValue(addr); }
60 public Address lowBoundary() { return lowBoundaryField.getValue(addr); }
61 public Address highBoundary() { return highBoundaryField.getValue(addr); }
67 public boolean contains(Address addr) { return (low().lessThanOrEqual(addr) && addr.lessThan(high())); } argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DField.java99 public boolean getJBoolean (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
100 public byte getJByte (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
101 public char getJChar (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
102 public short getJShort (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
103 public int getJInt (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
104 public long getJLong (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
105 public float getJFloat (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
106 public double getJDouble (Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
107 public long getCInteger (Address addr, CIntegerType type) argument
109 public Address getAddress (Address addr) throw argument
110 getOopHandle(Address addr) argument
112 getNarrowOopHandle(Address addr) argument
[all...]
/openjdk7/jdk/test/java/net/InetAddress/ptr/
H A DLookup.java46 String addr;
48 addr = args[1];
50 addr = args[0];
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DThreadAccess.java59 the contents of the memory location pointed to by addr. The
60 contents at location addr are inherently platform-dependent; see
63 public ThreadProxy getThreadForIdentifierAddress(Address addr); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdOopHandle.java30 BsdOopHandle(BsdDebugger debugger, long addr) { argument
31 super(debugger, addr);
43 return (addr == ((BsdAddress) arg).addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyOopHandle.java32 DummyOopHandle(DummyDebugger debugger, long addr) { argument
33 super(debugger, addr);
45 return (addr == ((DummyAddress) arg).addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxOopHandle.java30 LinuxOopHandle(LinuxDebugger debugger, long addr) { argument
31 super(debugger, addr);
43 return (addr == ((LinuxAddress) arg).addr);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgOopHandle.java30 WindbgOopHandle(WindbgDebugger debugger, long addr) { argument
31 super(debugger, addr);
43 return (addr == ((WindbgAddress) arg).addr);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DLinkRef.java105 RefAddr addr = get(linkAddrType);
106 if (addr != null && addr instanceof StringRefAddr) {
107 return (String)((StringRefAddr)addr).getContent();
/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))
H A Dicache_zero.hpp37 static void invalidate_word(address addr) {} argument
/openjdk7/jdk/test/java/net/InetAddress/
H A DGetLoopbackAddress.java49 InetAddress addr = InetAddress.getLoopbackAddress();
51 if (!(addr.equals(IPv4Loopback) || addr.equals(IPv6Loopback)))
57 if (addr != addr2)
H A DIsHostReachableBug.java43 InetAddress addr = InetAddress.getByName(hostName);
44 System.out.println("InetAddress is : " + addr);
46 + (addr instanceof Inet6Address));
47 if (!addr.isReachable(10000)){

Completed in 155 milliseconds

1234567891011>>