Searched refs:addr (Results 101 - 125 of 1007) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/cms/
H A DLinearAllocBlock.java52 return word_sizeField.getValue(addr);
56 public LinearAllocBlock(Address addr) { argument
57 super(addr);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DStub.java41 public Stub(Address addr) { argument
42 super(addr);
55 public Address getAddress() { return addr; }
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DCompactibleSpace.java56 public CompactibleSpace(Address addr) { argument
57 super(addr);
62 return compactionTopField.getValue(addr);
/openjdk10/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp61 // Tells whether the addr point into the monitors.
62 bool contains(void* addr) const { return (addr >= (void*) monitors()) && (addr < (void*) (monitors() + number_of_monitors())); }
/openjdk10/hotspot/src/share/vm/services/
H A DmemTracker.hpp40 void record(address addr, size_t size) { } argument
61 static inline void record_virtual_memory_reserve(void* addr, size_t size, const NativeCallStack& stack, argument
63 static inline void record_virtual_memory_reserve_and_commit(void* addr, size_t size, argument
65 static inline void record_virtual_memory_commit(void* addr, size_t size, const NativeCallStack& stack) { } argument
68 static inline void record_virtual_memory_type(void* addr, MEMFLAGS flag) { } argument
69 static inline void record_thread_stack(void* addr, size_t size) { } argument
70 static inline void release_thread_stack(void* addr, size_t size) { } argument
104 void record(address addr, size_t size);
197 static inline void record_virtual_memory_reserve(void* addr, size_t size, const NativeCallStack& stack, argument
200 if (addr !
208 record_virtual_memory_reserve_and_commit(void* addr, size_t size, const NativeCallStack& stack, MEMFLAGS flag = mtNone) argument
220 record_virtual_memory_commit(void* addr, size_t size, const NativeCallStack& stack) argument
240 record_virtual_memory_type(void* addr, MEMFLAGS flag) argument
249 record_thread_stack(void* addr, size_t size) argument
258 release_thread_stack(void* addr, size_t size) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DInetSocketAddress.java60 private InetAddress addr; field in class:InetSocketAddress.InetSocketAddressHolder
64 private InetSocketAddressHolder(String hostname, InetAddress addr, int port) { argument
66 this.addr = addr;
75 return addr;
81 if (addr != null)
82 return addr.getHostName();
89 if (addr != null) {
90 if (addr.holder().getHostName() != null)
91 return addr
184 InetSocketAddress(InetAddress addr, int port) argument
[all...]
/openjdk10/jdk/test/java/net/ipv6tests/
H A DBadIPv6Addresses.java68 InetAddress addr = InetAddress.getByName(addrStr);
79 for (String addr : failedAddrs) {
80 System.out.println("\t" + addr);
/openjdk10/jdk/test/javax/naming/module/src/fruit/org/example/fruit/
H A DFruitFactory.java43 RefAddr addr = ref.get("fruit");
44 if (addr != null) {
45 return new Fruit((String)addr.getContent());
/openjdk10/jdk/src/java.base/share/classes/sun/net/util/
H A DIPAddressUtil.java259 public static byte[] convertFromIPv4MappedAddress(byte[] addr) { argument
260 if (isIPv4MappedAddress(addr)) {
262 System.arraycopy(addr, 12, newAddr, 0, INADDR4SZ);
275 private static boolean isIPv4MappedAddress(byte[] addr) { argument
276 if (addr.length < INADDR16SZ) {
279 if ((addr[0] == 0x00) && (addr[1] == 0x00) &&
280 (addr[2] == 0x00) && (addr[3] == 0x00) &&
281 (addr[
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DJavaCallWrapper.java63 public JavaCallWrapper(Address addr) { argument
64 super(addr);
68 return lastJavaSPField.getValue(addr.addOffsetTo(anchorField.getOffset()));
72 return lastJavaPCField.getValue(addr.addOffsetTo(anchorField.getOffset()));
H A DInstanceConstructor.java45 abstract public T instantiateWrapperFor(Address addr) throws WrongTypeException; argument
47 protected WrongTypeException newWrongTypeException(Address addr) { argument
48 String message = "No suitable match for type of address " + addr;
52 Address vtblPtr = addr.getAddressAt(0);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/types/
H A DJBooleanField.java37 public boolean 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 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 DJShortField.java37 public short getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJLongField.java37 public long getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
H A DJIntField.java37 public int getValue(Address addr) throws UnmappedAddressException, UnalignedAddressException, WrongTypeException; argument
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThread.java33 public RemoteSPARCThread(RemoteDebuggerClient debugger, Address addr) { argument
34 super(debugger, addr);
43 long[] regs = (addr != null)? debugger.getThreadIntegerRegisterSet(addr) :
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86Thread.java33 public RemoteX86Thread(RemoteDebuggerClient debugger, Address addr) { argument
34 super(debugger, addr);
43 long[] regs = (addr != null)? debugger.getThreadIntegerRegisterSet(addr) :
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/aarch64/
H A DRemoteAARCH64Thread.java34 public RemoteAARCH64Thread(RemoteDebuggerClient debugger, Address addr) { argument
35 super(debugger, addr);
44 long[] regs = (addr != null)? debugger.getThreadIntegerRegisterSet(addr) :
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64Thread.java33 public RemoteAMD64Thread(RemoteDebuggerClient debugger, Address addr) { argument
34 super(debugger, addr);
43 long[] regs = (addr != null)? debugger.getThreadIntegerRegisterSet(addr) :
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/remote/ppc64/
H A DRemotePPC64Thread.java33 public RemotePPC64Thread(RemoteDebuggerClient debugger, Address addr) { argument
34 super(debugger, addr);
43 long[] regs = (addr != null)? debugger.getThreadIntegerRegisterSet(addr) :
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/compiler/
H A DImmutableOopMap.java52 public ImmutableOopMap(Address addr) { argument
53 super(addr);
61 return countField.getValue(addr);
65 return addr.addOffsetTo(classSize);

Completed in 96 milliseconds

1234567891011>>