Searched refs:address (Results 201 - 225 of 838) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/oops/
H A DklassOop.hpp42 Klass* klass_part() const { return (Klass*)((address)this + sizeof(klassOopDesc)); }
79 address address_field(int offset) const;
80 void address_field_put(int offset, address contents);
109 address address_field_acquire(int offset) const;
110 void release_address_field_put(int offset, address contents);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpIpAddress.java46 * @param bytes The four bytes composing the address.
58 int address = (int)addr ;
61 ipaddr[0] = (byte) ((address >>> 24) & 0xFF);
62 ipaddr[1] = (byte) ((address >>> 16) & 0xFF);
63 ipaddr[2] = (byte) ((address >>> 8) & 0xFF);
64 ipaddr[3] = (byte) (address & 0xFF);
73 * @exception IllegalArgumentException The string does not correspond to an ip address.
107 * Converts the address value to its byte array form.
121 * Converts the address to its <CODE>String</CODE> form.
130 * Extracts the ip address fro
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.inline.hpp33 inline void MacroAssembler::pd_patch_instruction(address branch, address target) {
45 int imm8 = target - (address) &disp[1];
50 int imm32 = target - (address) &disp[1];
56 inline void MacroAssembler::pd_print_patched_instruction(address branch) {
H A DjniFastGetField_x86_64.cpp53 address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
68 address fast_entry = __ pc();
114 address slow_case_addr;
131 address JNI_FastGetField::generate_fast_get_boolean_field() {
135 address JNI_FastGetField::generate_fast_get_byte_field() {
139 address JNI_FastGetField::generate_fast_get_char_field() {
143 address JNI_FastGetField::generate_fast_get_short_field() {
147 address JNI_FastGetField::generate_fast_get_int_field() {
151 address JNI_FastGetField::generate_fast_get_long_field() {
155 address JNI_FastGetFiel
[all...]
H A Dinterpreter_x86_64.cpp56 address AbstractInterpreterGenerator::generate_slow_signature_handler() {
57 address entry = __ pc();
66 CAST_FROM_FN_PTR(address,
75 // return address
135 address AbstractInterpreterGenerator::generate_slow_signature_handler() {
136 address entry = __ pc();
145 CAST_FROM_FN_PTR(address,
155 // return address
203 address InterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) {
211 address entry_poin
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dassembler_linux_x86.cpp33 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
46 call(RuntimeAddress(CAST_FROM_FN_PTR(address, pthread_getspecific)));
62 ExternalAddress tls_base((address)ThreadLocalStorage::sp_map_addr());
71 call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
94 call(RuntimeAddress(CAST_FROM_FN_PTR(address, pthread_getspecific)));
/openjdk7/hotspot/src/share/vm/services/
H A DmemPtr.hpp88 * class that wraps an address to a memory block,
95 MemPointer(address addr): _addr(addr) { }
101 inline address addr() const {
105 inline operator address() const {
119 inline void set_addr(address addr) { _addr = addr; }
122 // memory address
123 address _addr;
210 MemPointerRecord(address addr, MEMFLAGS memflags, size_t size = 0):
242 // if the pointer represents a malloc-ed memory address
247 // if the pointer represents a virtual memory address
[all...]
/openjdk7/jdk/test/java/net/DatagramPacket/
H A DConstructor.java112 InetAddress address = InetAddress.getLocalHost();
115 new DatagramPacket(buf, 256, address, Integer.MAX_VALUE);
140 InetAddress address = InetAddress.getLocalHost();
143 address, port);
146 packet.getAddress() != address ||
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpBroadcaster.java42 * <p> Multicast group address, port number and ttl have to be chosen on upper
44 * source address to broadcast from. </p>
59 * @param address - multicast group address
60 * @param srcAddress - address of interface we should use to broadcast.
65 public JdpBroadcaster(InetAddress address, InetAddress srcAddress, int port, int ttl) argument
67 this.addr = address;
70 ProtocolFamily family = (address instanceof Inet6Address)
85 throw new JdpException("Unable to bind to source address");
94 * @param address
99 JdpBroadcaster(InetAddress address, int port, int ttl) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java104 * null) from the memory address whose numerical value is the given
135 * uses its offset as an absolute address. This is similar in operation
148 * object, if any, else a memory address locating the variable
170 * object, if any, else a memory address locating the variable
394 * Fetches a value from a given memory address. If the address is zero, or
400 public native byte getByte(long address); argument
403 * Stores a value into a given memory address. If the address is zero, or
409 public native void putByte(long address, byt argument
412 getShort(long address) argument
414 putShort(long address, short x) argument
416 getChar(long address) argument
418 putChar(long address, char x) argument
420 getInt(long address) argument
422 putInt(long address, int x) argument
424 getLong(long address) argument
426 putLong(long address, long x) argument
428 getFloat(long address) argument
430 putFloat(long address, float x) argument
432 getDouble(long address) argument
434 putDouble(long address, double x) argument
450 getAddress(long address) argument
462 putAddress(long address, long x) argument
500 reallocateMemory(long address, long bytes) argument
528 setMemory(long address, long bytes, byte value) argument
570 freeMemory(long address) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxNativeDispatcher.java45 return setmntent0(pathBuffer.address(), typeBuffer.address());
73 return fgetxattr0(filedes, buffer.address(), valueAddress, valueLen);
90 fsetxattr0(filedes, buffer.address(), valueAddress, valueLen);
105 fremovexattr0(filedes, buffer.address());
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpoint.java190 * Publishes this endpoint at the given address.
196 * @param address A URI specifying the address to use. The address
201 * If the provided address URI is not usable
212 public abstract void publish(String address); argument
216 * object at the given address.
225 * @param address A URI specifying the address and transport/protocol
239 public static Endpoint publish(String address, Objec argument
271 publish(String address, Object implementor, WebServiceFeature ... features) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java60 return CreateFile0(buffer.address(),
103 DeleteFile0(buffer.address());
120 CreateDirectory0(buffer.address(), lpSecurityAttributes);
136 RemoveDirectory0(buffer.address());
174 FindFirstFile0(buffer.address(), data);
199 static long FindFirstFile(String path, long address) throws WindowsException { argument
202 return FindFirstFile1(buffer.address(), address);
207 private static native long FindFirstFile1(long lpFileName, long address) argument
218 static native String FindNextFile(long handle, long address) argument
273 GetFileInformationByHandle(long handle, long address) argument
366 GetFileAttributesEx(String path, long address) argument
374 GetFileAttributesEx0(long lpFileName, long address) argument
970 LocalFree(long address) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.hpp84 address code_begin() const { ShouldNotCallThis(); return NULL; } // points to the first byte of the code
85 address code_end() const { ShouldNotCallThis(); return NULL; } // points to the first byte after the code
118 virtual address code_begin(Stub* self) const = 0; // points to the first code byte
119 virtual address code_end(Stub* self) const = 0; // points to the first byte after the code
147 virtual address code_begin(Stub* self) const { return cast(self)->code_begin(); } \
148 virtual address code_end(Stub* self) const { return cast(self)->code_end(); } \
163 address _stub_buffer; // where all stubs are stored
173 int index_of(Stub* s) const { int i = (address)s - _stub_buffer; check_index(i); return i; }
182 bool stub_contains(Stub* s, address pc) const { return _stub_interface->code_begin(s) <= pc && pc < _stub_interface->code_end(s); }
200 bool contains(address p
[all...]
H A DcodeCache.hpp101 // the codeBlob itself. If you look up an address that is within
106 // of invalid address and so can a developer using hsfind.
110 // assert(result == NULL || result->blob_contains((address)start), "found wrong CodeBlob");
112 if (result != NULL && !result->blob_contains((address)start)) {
161 static address low_bound() { return (address) _heap->low_boundary(); }
162 static address high_bound() { return (address) _heap->high_boundary(); }
163 static address high() { return (address) _hea
[all...]
H A DrelocInfo.cpp122 void relocInfo::change_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type, relocType new_type) {
135 void relocInfo::remove_reloc_info_for_address(RelocIterator *itr, address pc, relocType old_type) {
143 void RelocIterator::initialize(nmethod* nm, address begin, address limit) {
147 // allow nmethod to be deduced from beginning address
174 RelocIterator::RelocIterator(CodeSection* cs, address begin, address limit) {
230 address relocation_begin = (address)dest_begin;
231 address relocation_en
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp54 // In addition, the GrowableCache maintains a NULL terminated cache array of type address
56 // address GrowableElement::getCacheValue().
60 // void (*_listener_fun)(void *this_obj, address* cache)
61 // gets called with the cache's new address. This gives the user of the GrowableCache a callback
62 // to update its pointer to the address cache.
67 virtual address getCacheValue() =0;
84 address *_cache;
89 void (*_listener_fun)(void *, address*);
100 void initialize(void *this_obj, void listener_fun(void *, address*) );
140 void initialize(void *this_obj, void listener_fun(void *, address*) ) {
[all...]
/openjdk7/jdk/src/windows/classes/java/net/
H A DPlainSocketImpl.java167 protected void connect(InetAddress address, int port) throws IOException { argument
168 impl.connect(address, port);
171 protected void connect(SocketAddress address, int timeout) throws IOException { argument
172 impl.connect(address, timeout);
183 synchronized void doConnect(InetAddress address, int port, int timeout) throws IOException { argument
184 impl.doConnect(address, port, timeout);
187 protected synchronized void bind(InetAddress address, int lport) argument
190 impl.bind(address, lport);
196 delegate.address = new InetAddress();
208 void setAddress(InetAddress address) { argument
300 socketConnect(InetAddress address, int port, int timeout) argument
305 socketBind(InetAddress address, int port) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java99 public void checkAlignment(long address, long alignment) {
102 if ( (address % alignment != 0)
103 &&(alignment != 8 || address % 4 != 0)) {
105 "Trying to read at address: "
106 + addressValueToString(address)
108 address);
123 // Cache portion of the remote process's address space.
258 public synchronized ClosestSymbol lookup(long address) { argument
259 return lookupByAddress0(address);
291 public long readJLong(long address) argument
309 addressValueToString(long address) argument
314 readAddress(long address) argument
319 readCompOopAddress(long address) argument
325 readOopHandle(long address) argument
330 readCompOopHandle(long address) argument
482 readBytesFromProcess(long address, long numBytes) argument
503 writeBytesToProcess(long address, long numBytes, byte[] data) argument
685 readBytesFromProcess0(long address, long numBytes) argument
690 lookupByAddress0(long address) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebuggerClient.java40 address space on the local machine where the user interface is
88 // Cache portion of the remote process's address space.
237 public long readCInteger(long address, long numBytes, boolean isUnsigned) argument
240 utils.checkAlignment(address, numBytes);
246 utils.checkAlignment(address, 4);
248 utils.checkAlignment(address, numBytes);
251 byte[] data = readBytes(address, numBytes);
257 public long readJLong(long address) argument
263 utils.checkAlignment(address, jintSize);
265 utils.checkAlignment(address, jlongSiz
310 readAddress(long address) argument
316 readCompOopAddress(long address) argument
322 readOopHandle(long address) argument
328 readCompOopHandle(long address) argument
396 readBytesFromProcess(long address, long numBytes) argument
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.cpp153 address _start, _end;
159 address _cur_insn;
187 void print_insn_bytes(address pc0, address pc);
188 void print_address(address value);
193 address decode_instructions(address start, address end);
195 void start_insn(address pc) {
201 void end_insn(address p
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPortImpl.java49 private EndpointAddress address; field in class:WSDLPortImpl
75 return address;
85 public void setAddress(EndpointAddress address) { argument
86 assert address!=null;
87 this.address = address;
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DAdaptDatagramSocket.java85 throw new Exception("Incorrect sender address, expected: " + dst
125 // Leave the socket open so that we don't reuse the old src address
134 final InetSocketAddress address
137 test(address, 0, false, false);
138 test(address, 0, false, true);
139 test(address, 5000, false, false);
143 final InetSocketAddress address
146 test(address, 10, true, false);
H A DConnect.java91 InetAddress address = InetAddress.getLocalHost();
92 if (address.isLoopbackAddress()) {
93 address = InetAddress.getLoopbackAddress();
95 InetSocketAddress isa = new InetSocketAddress(address, port);
99 // Try to send to some other address
100 address = InetAddress.getLocalHost();
101 InetSocketAddress bogus = new InetSocketAddress(address, 3333);
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dos_linux_sparc.cpp88 static inline void set_cont_address(sigcontext* ctx, address addr) {
153 CAST_FROM_FN_PTR(address, os::current_frame));
162 address os::current_stack_pointer() {
164 return (address)sp;
167 static void current_stack_region(address* bottom, size_t* size) {
197 address os::current_stack_base() {
198 address bottom;
206 address bottom;
213 // Must never look like an address returned by reserve_memory,
216 // On SPARC, 0 != %hi(any real address), becaus
[all...]

Completed in 114 milliseconds

1234567891011>>