Searched refs:address (Results 101 - 125 of 838) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DNotificationTargetImpl.java34 private InetAddress address; field in class:NotificationTargetImpl
42 * host address, or an IPv6 numeric address enclosed in square
51 public NotificationTargetImpl(String address, int port, argument
54 this(InetAddress.getByName(address),port,community);
57 public NotificationTargetImpl(InetAddress address, int port, argument
59 this.address = address;
83 "be numeric IPv6 address");
98 address
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/spi/
H A DTransportService.java103 * multiple concurrent connections to a single address that
158 * Attaches to the specified address.
160 * <p> Attaches to the specified address and returns a connection
165 * First, a connection is established to specified address. This
172 * @param address
173 * The address of the target VM.
211 * If the address is invalid or the value of the
216 public abstract Connection attach(String address, long attachTimeout, argument
230 * service from listening on an address.
237 public abstract String address(); method in class:TransportService.ListenKey
263 startListening(String address) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMIpAddress.java37 protected StringBuffer address= new StringBuffer(); field in class:JDMIpAddress
56 return address.toString();
61 return new PrincipalImpl(address.toString());
H A DJDMIpMask.java37 protected StringBuffer address= new StringBuffer(); field in class:JDMIpMask
56 return address.toString();
61 return new GroupImpl(address.toString());
H A DJDMNetMask.java33 protected StringBuffer address= new StringBuffer(); field in class:JDMNetMask
51 return address.toString();
56 return new NetMaskImpl(address.toString(), Integer.parseInt(mask));
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp77 EntryPoint::EntryPoint(address bentry, address centry, address sentry, address aentry, address ientry, address lentry, address fentry, address dentry, address ventry) {
91 void EntryPoint::set_entry(TosState state, address entr
[all...]
H A DbytecodeTracer.hpp50 static void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st = tty);
51 static void trace(methodHandle method, address bcp, outputStream* st = tty);
59 virtual void trace(methodHandle method, address bcp, uintptr_t tos, uintptr_t tos2, outputStream* st) = 0;
60 virtual void trace(methodHandle method, address bcp, outputStream* st) = 0;
H A DabstractInterpreter.hpp137 static address _native_entry_begin; // Region for native entry code
138 static address _native_entry_end;
141 static address _entry_table[number_of_method_entries]; // entry points for a given method
142 static address _native_abi_to_tosca[number_of_result_handlers]; // for native method result handlers
143 static address _slow_signature_handler; // the native method generic (slow) signature handler
145 static address _rethrow_exception_entry; // rethrows an activation in previous frame
159 static address entry_for_kind(MethodKind k) { assert(0 <= k && k < number_of_method_entries, "illegal kind"); return _entry_table[k]; }
160 static address entry_for_method(methodHandle m) { return entry_for_kind(method_kind(m)); }
163 static void set_entry_for_kind(MethodKind k, address e);
172 static address deopt_entr
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.hpp115 address header_begin() const { return (address) this; }
116 address header_end() const { return ((address) this) + _header_size; };
119 address content_begin() const { return (address) header_begin() + _content_offset; }
120 address content_end() const { return (address) header_begin() + _data_offset; }
121 address code_begin() const { return (address) header_begi
[all...]
H A DrelocInfo.hpp72 // 12 bits indicating the offset from the previous relocInfo address
75 // address within the CodeBlob, which is named RelocIterator::addr().
76 // The address of a particular relocInfo always points to the first
85 // at the corresponding code address. The format value is usually zero.
116 // Instruction: The corresponding code address is ignored
122 // Value: an oop, or else the address (handle) of an oop
123 // Instruction types: memory (load), set (load address)
132 // relocInfo::internal_word_type -- an address within the same CodeBlob
134 // Value: an address in the CodeBlob's code or constants section
135 // Instruction types: memory (load), set (load address)
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86MoveLoadInstruction.java31 public X86MoveLoadInstruction(String name, X86Register register, Address address, int dataType, int size, int prefixes) { argument
32 super(name, address, register, dataType, size, prefixes);
52 buf.append(address.toString());
57 return address;
H A DX86MoveStoreInstruction.java33 public X86MoveStoreInstruction(String name, Address address, X86Register register, int dataType, int size, int prefixes) { argument
34 super(name, address, register, dataType, size, prefixes);
44 buf.append(address.toString());
55 return address;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPage.java65 address space */
87 requested is greater than the page size, or if the start address
112 requested is greater than the page size, or if the start address
127 public boolean getBoolean(long address) { argument
128 return (getByte(address) != 0);
131 public byte getByte(long address) { argument
132 return data[(int) address - (int) baseAddress];
135 public short getShort(long address, boolean bigEndian) { argument
136 int start = (int) address - (int) baseAddress;
148 public char getChar(long address, boolea argument
152 getInt(long address, boolean bigEndian) argument
169 getLong(long address, boolean bigEndian) argument
194 getFloat(long address, boolean bigEndian) argument
198 getDouble(long address, boolean bigEndian) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DHostAddress.java49 * address [1] OCTET STRING
62 byte[] address = null; field in class:HostAddress
64 private static InetAddress localInetAddress; //caches local inet address
73 if (address != null) {
74 new_hostAddress.address = address.clone();
84 if (address != null) {
85 for (int i=0; i < address.length; i++) {
86 result = 37*result + address[i];
106 (address !
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEPoll.java75 static void freePollArray(long address) { argument
76 unsafe.freeMemory(address);
82 static long getEvent(long address, int i) { argument
83 return address + (SIZEOF_EPOLLEVENT*i);
/openjdk7/jdk/src/share/classes/java/nio/
H A DMappedByteBuffer.java99 // Returns the distance (in bytes) of the buffer from the page aligned address
103 long offset = address % ps;
108 return address - mappingOffset;
135 if ((address == 0) || (capacity() == 0))
157 if ((address == 0) || (capacity() == 0))
201 if ((address != 0) && (capacity() != 0)) {
208 private native boolean isLoaded0(long address, long length, int pageCount); argument
209 private native void load0(long address, long length); argument
210 private native void force0(FileDescriptor fd, long address, long length); argument
/openjdk7/hotspot/src/cpu/zero/vm/
H A DsharkFrame_zero.hpp67 address pc() const {
68 return (address) value_of_word(pc_off);
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.hpp42 virtual bool decode(address pc, char* buf, int buflen, int* offset,
44 virtual bool decode(address pc, char* buf, int buflen, int* offset,
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm_misc.hpp88 address jni_GetBooleanField_addr();
89 address jni_GetByteField_addr();
90 address jni_GetCharField_addr();
91 address jni_GetShortField_addr();
92 address jni_GetIntField_addr();
93 address jni_GetLongField_addr();
94 address jni_GetFloatField_addr();
95 address jni_GetDoubleField_addr();
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.hpp45 bool decode(address addr, char *buf, int buflen, int* offset, const char* filepath = NULL);
46 bool decode(address addr, char *buf, int buflen, int* offset, const void *base) {
H A Ddecoder.hpp46 // decode an pc address to corresponding function name and an offset from the beginning of
48 virtual bool decode(address pc, char* buf, int buflen, int* offset,
50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
82 virtual bool decode(address pc, char* buf, int buflen, int* offset,
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) {
103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dbytes_windows_x86.inline.hpp34 address p = (address) &x;
48 address p = (address) &x;
62 address p = (address) &x;
/openjdk7/jdk/src/solaris/native/java/nio/
H A DMappedByteBuffer.c36 Java_java_nio_MappedByteBuffer_isLoaded0(JNIEnv *env, jobject obj, jlong address, argument
42 void *a = (void *) jlong_to_ptr(address);
73 Java_java_nio_MappedByteBuffer_load0(JNIEnv *env, jobject obj, jlong address, argument
76 char *a = (char *)jlong_to_ptr(address);
86 jlong address, jlong len)
88 void* a = (void *)jlong_to_ptr(address);
85 Java_java_nio_MappedByteBuffer_force0(JNIEnv *env, jobject obj, jobject fdo, jlong address, jlong len) argument
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp86 address _start; // first byte of contents (instructions)
87 address _mark; // user mark, usually an instruction beginning
88 address _end; // current end address
89 address _limit; // last possible (allocated) end address
93 address _locs_point; // last relocated position (grows upward)
121 void initialize(address start, csize_t size = 0) {
145 address start() const { return _start; }
146 address mar
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp34 void Relocation::pd_set_data_value(address x, intptr_t o, bool verify_only) {
49 address disp = Assembler::locate_operand(addr(), which);
57 address ip = addr();
58 address disp = Assembler::locate_operand(ip, which);
59 address next_ip = Assembler::locate_next_instruction(ip);
76 address Relocation::pd_call_destination(address orig_addr) {
91 return (address) ((NativeMovConstReg*)ni)->data();
99 void Relocation::pd_set_call_destination(address x) {
107 // However 64bit can't actually produce such an address
[all...]

Completed in 73 milliseconds

1234567891011>>