Searched refs:address (Results 51 - 75 of 838) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSocketDispatcher.java38 int read(FileDescriptor fd, long address, int len) throws IOException { argument
39 return FileDispatcherImpl.read0(fd, address, len);
42 long readv(FileDescriptor fd, long address, int len) throws IOException { argument
43 return FileDispatcherImpl.readv0(fd, address, len);
46 int write(FileDescriptor fd, long address, int len) throws IOException { argument
47 return FileDispatcherImpl.write0(fd, address, len);
50 long writev(FileDescriptor fd, long address, int len) throws IOException { argument
51 return FileDispatcherImpl.writev0(fd, address, len);
H A DDatagramDispatcher.java42 int read(FileDescriptor fd, long address, int len) throws IOException { argument
43 return read0(fd, address, len);
46 long readv(FileDescriptor fd, long address, int len) throws IOException { argument
47 return readv0(fd, address, len);
50 int write(FileDescriptor fd, long address, int len) throws IOException { argument
51 return write0(fd, address, len);
54 long writev(FileDescriptor fd, long address, int len) throws IOException { argument
55 return writev0(fd, address, len);
66 static native int read0(FileDescriptor fd, long address, int len) argument
69 static native long readv0(FileDescriptor fd, long address, in argument
72 write0(FileDescriptor fd, long address, int len) argument
75 writev0(FileDescriptor fd, long address, int len) argument
[all...]
H A DFileDispatcherImpl.java45 int read(FileDescriptor fd, long address, int len) throws IOException { argument
46 return read0(fd, address, len);
49 int pread(FileDescriptor fd, long address, int len, long position) argument
52 return pread0(fd, address, len, position);
55 long readv(FileDescriptor fd, long address, int len) throws IOException { argument
56 return readv0(fd, address, len);
59 int write(FileDescriptor fd, long address, int len) throws IOException { argument
60 return write0(fd, address, len);
63 int pwrite(FileDescriptor fd, long address, int len, long position) argument
66 return pwrite0(fd, address, le
69 writev(FileDescriptor fd, long address, int len) argument
113 read0(FileDescriptor fd, long address, int len) argument
116 pread0(FileDescriptor fd, long address, int len, long position) argument
119 readv0(FileDescriptor fd, long address, int len) argument
122 write0(FileDescriptor fd, long address, int len) argument
125 pwrite0(FileDescriptor fd, long address, int len, long position) argument
128 writev0(FileDescriptor fd, long address, int len) argument
[all...]
H A DKQueue.java74 static void freePollArray(long address) { argument
75 unsafe.freeMemory(address);
81 static long getEvent(long address, int i) { argument
82 return address + (SIZEOF_KQUEUEEVENT*i);
88 static int getDescriptor(long address) { argument
89 return unsafe.getInt(address + OFFSET_IDENT);
92 static int getFilter(long address) { argument
93 return unsafe.getShort(address + OFFSET_FILTER);
96 static int getFlags(long address) { argument
97 return unsafe.getShort(address
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkEntry.hpp35 address _code_limit;
40 address code_start() const {
43 address code_limit() const {
54 void set_code_limit(address code_limit) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dbytes_x86.hpp46 static inline u2 get_native_u2(address p) { return *(u2*)p; }
47 static inline u4 get_native_u4(address p) { return *(u4*)p; }
48 static inline u8 get_native_u8(address p) { return *(u8*)p; }
50 static inline void put_native_u2(address p, u2 x) { *(u2*)p = x; }
51 static inline void put_native_u4(address p, u4 x) { *(u4*)p = x; }
52 static inline void put_native_u8(address p, u8 x) { *(u8*)p = x; }
58 static inline u2 get_Java_u2(address p) { return swap_u2(get_native_u2(p)); }
59 static inline u4 get_Java_u4(address p) { return swap_u4(get_native_u4(p)); }
60 static inline u8 get_Java_u8(address p) { return swap_u8(get_native_u8(p)); }
62 static inline void put_Java_u2(address
[all...]
H A DicBuffer_x86.cpp47 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) {
56 masm->lea(rax, OopAddress((address) cached_oop));
61 address InlineCacheBuffer::ic_buffer_entry_point(address code_begin) {
68 oop InlineCacheBuffer::ic_buffer_cached_oop(address code_begin) {
H A DregisterMap_x86.hpp37 address pd_location(VMReg reg) const {return NULL;}
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DDatagramDispatcher.java42 int read(FileDescriptor fd, long address, int len) throws IOException { argument
43 return read0(fd, address, len);
46 long readv(FileDescriptor fd, long address, int len) throws IOException { argument
47 return readv0(fd, address, len);
50 int write(FileDescriptor fd, long address, int len) throws IOException { argument
51 return write0(fd, address, len);
54 long writev(FileDescriptor fd, long address, int len) throws IOException { argument
55 return writev0(fd, address, len);
62 static native int read0(FileDescriptor fd, long address, int len) argument
65 static native long readv0(FileDescriptor fd, long address, in argument
68 write0(FileDescriptor fd, long address, int len) argument
71 writev0(FileDescriptor fd, long address, int len) argument
[all...]
H A DSocketDispatcher.java42 int read(FileDescriptor fd, long address, int len) throws IOException { argument
43 return read0(fd, address, len);
46 long readv(FileDescriptor fd, long address, int len) throws IOException { argument
47 return readv0(fd, address, len);
50 int write(FileDescriptor fd, long address, int len) throws IOException { argument
51 return write0(fd, address, len);
54 long writev(FileDescriptor fd, long address, int len) throws IOException { argument
55 return writev0(fd, address, len);
67 static native int read0(FileDescriptor fd, long address, int len) argument
70 static native long readv0(FileDescriptor fd, long address, in argument
73 write0(FileDescriptor fd, long address, int len) argument
76 writev0(FileDescriptor fd, long address, int len) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerBase.java214 protected final byte[] readBytes(long address, long numBytes) argument
217 return cache.getData(address, numBytes);
219 ReadResult res = readBytesFromProcess(address, numBytes);
228 protected final void writeBytes(long address, long numBytes, byte[] data) argument
231 cache.clear(address, numBytes);
233 writeBytesToProcess(address, numBytes, data);
236 public boolean readJBoolean(long address) argument
239 utils.checkAlignment(address, jbooleanSize);
241 return (cache.getByte(address) != 0);
243 byte[] data = readBytes(address, jbooleanSiz
248 readJByte(long address) argument
262 readJChar(long address) argument
276 readJDouble(long address) argument
290 readJFloat(long address) argument
304 readJInt(long address) argument
318 readJLong(long address) argument
332 readJShort(long address) argument
346 readCInteger(long address, long numBytes, boolean isUnsigned) argument
380 writeJBoolean(long address, boolean value) argument
388 writeJByte(long address, byte value) argument
396 writeJChar(long address, char value) argument
404 writeJDouble(long address, double value) argument
412 writeJFloat(long address, float value) argument
420 writeJInt(long address, int value) argument
428 writeJLong(long address, long value) argument
436 writeJShort(long address, short value) argument
444 writeCInteger(long address, long numBytes, long value) argument
452 readAddressValue(long address) argument
457 readCompOopAddressValue(long address) argument
467 writeAddressValue(long address, long value) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterRT_sparc.hpp32 static address iload (JavaThread* thread);
33 static address aload (JavaThread* thread);
34 static address istore(JavaThread* thread);
35 static address astore(JavaThread* thread);
36 static address iinc (JavaThread* thread);
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dassembler_zero.hpp39 void pd_patch_instruction(address branch, address target);
41 static void pd_print_patched_instruction(address branch);
66 address ShouldNotCallThisStub();
67 address ShouldNotCallThisEntry();
H A Dinterpreter_zero.hpp30 static void invoke_method(methodOop method, address entry_point, TRAPS) {
34 address entry_point,
35 address osr_buf,
H A DbytecodeInterpreter_zero.cpp48 const char *BytecodeInterpreter::name_of_field_at_address(address addr) {
49 #define DO(member) {if (addr == (address) &(member)) return XSTR(member);}
66 if (addr > (address) &_result && addr < (address) (&_result + 1))
H A DregisterMap_zero.hpp37 address pd_location(VMReg reg) const { return NULL; }
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DIPAddressName.java43 * When the subjectAltName extension contains a iPAddress, the address
47 * address. For IP Version 4, as specified in RFC 791, the octet string
56 * address range.[RFC 1519] For IPv6 addresses, the ipAddress field
71 private byte[] address; field in class:IPAddressName
88 * @params address the IP address
89 * @throws IOException if address is not a valid IPv4 or IPv6 address
91 public IPAddressName(byte[] address) throws IOException { argument
93 * A valid address mus
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.hpp42 // the address of the generated code, the corresponding C++ code and an
82 address addr() { return (address)&_count; }
112 static address generate_stub(ciEnv* ci_env, TypeFunc_generator gen, address C_function, const char *name, int is_fancy_jump, bool pass_tls, bool save_arguments, bool return_pc);
115 static address _new_instance_Java;
116 static address _new_array_Java;
117 static address _new_array_nozero_Java;
118 static address _multianewarray2_Java;
119 static address _multianewarray3_Jav
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubRoutines.cpp47 address StubRoutines::_call_stub_return_address = NULL;
48 address StubRoutines::_call_stub_entry = NULL;
50 address StubRoutines::_catch_exception_entry = NULL;
51 address StubRoutines::_forward_exception_entry = NULL;
52 address StubRoutines::_throw_AbstractMethodError_entry = NULL;
53 address StubRoutines::_throw_IncompatibleClassChangeError_entry = NULL;
54 address StubRoutines::_throw_NullPointerException_at_call_entry = NULL;
55 address StubRoutines::_throw_StackOverflowError_entry = NULL;
56 address StubRoutines::_handler_for_unsafe_access_entry = NULL;
58 address StubRoutine
[all...]
H A DsharedRuntime.hpp80 static SafepointBlob* generate_handler_blob(address call_ptr, int poll_type);
81 static RuntimeStub* generate_resolve_blob(address destination, const char* name);
168 static address raw_exception_handler_for_return_address(JavaThread* thread, address return_address);
169 static address exception_handler_for_return_address(JavaThread* thread, address return_address);
178 static address compute_compiled_exc_handler(nmethod* nm, address ret_pc, Handle& exception,
191 static address continuation_for_implicit_exception(JavaThread* thread,
192 address faulting_p
[all...]
H A Dicache.hpp46 typedef int (*flush_icache_stub_t)(address addr, int lines, int magic);
49 // The flush stub function address
53 static void call_flush_stub(address start, int lines);
63 static void invalidate_word(address addr);
64 static void invalidate_range(address start, int nbytes);
101 // addr - Start address, must be aligned at log2_line_size
115 // address start = __ pc();
129 // The usual method of having generate_icache_flush return the address of the
130 // stub to its caller, which would then, e.g., store that address in
132 // flush_icache_stub to the address o
[all...]
/openjdk7/jdk/src/solaris/classes/sun/net/
H A DNetHooks.java58 InetAddress address,
66 InetAddress address,
82 InetAddress address,
86 provider.implBeforeTcpBind(fdObj, address, port);
93 InetAddress address,
97 provider.implBeforeTcpConnect(fdObj, address, port);
57 implBeforeTcpBind(FileDescriptor fdObj, InetAddress address, int port) argument
65 implBeforeTcpConnect(FileDescriptor fdObj, InetAddress address, int port) argument
81 beforeTcpBind(FileDescriptor fdObj, InetAddress address, int port) argument
92 beforeTcpConnect(FileDescriptor fdObj, InetAddress address, int port) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DCallDecoder.java36 Address address;
38 address = new X86RegisterDirectAddress((X86Register)operand);
40 address = (Address) operand;
42 return factory.newCallInstruction(name, address, size, prefixes);
H A DJmpDecoder.java36 Address address;
38 address = new X86RegisterDirectAddress((X86Register)operand);
40 address = (Address) operand;
42 return factory.newJmpInstruction(name, address, size, prefixes);
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramPacket.java62 InetAddress address; field in class:DatagramPacket
80 this.address = null;
108 * @param address the destination address.
115 InetAddress address, int port) {
117 setAddress(address);
131 * @param address the destination socket address.
132 * @throws IllegalArgumentException if address type is not supported
138 SocketAddress address) throw
114 DatagramPacket(byte buf[], int offset, int length, InetAddress address, int port) argument
137 DatagramPacket(byte buf[], int offset, int length, SocketAddress address) argument
155 DatagramPacket(byte buf[], int length, InetAddress address, int port) argument
173 DatagramPacket(byte buf[], int length, SocketAddress address) argument
308 setSocketAddress(SocketAddress address) argument
[all...]

Completed in 116 milliseconds

1234567891011>>