Searched refs:address (Results 126 - 150 of 838) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngineId.java66 * If a string of the format <address>:<port>:<IANA number> has been provided at creation time, this string is returned.
140 byte[] address = null;
182 * <BR> &lt;address&gt;:&lt;port&gt;:&lt;IANA number&gt;</P>
185 * <li> &lt;address&gt;:&lt;port&gt;:&lt;IANA number&gt
186 * <BR> All these parameters are used to generate the Id. WARNING, this method is not compliant with IPv6 address format. Use { @link com.sun.jmx.snmp.SnmpEngineId#createEngineId(java.lang.String,java.lang.String) } instead.</li>
187 * <li> &lt;address&gt;:&lt;port&gt;
189 * <li> address
197 * <li> &lt;address&gt;::&lt;IANA number&gt
210 * <li>An IPv6 address format is used in conjonction with the ":" separator</li>
225 * address forma
368 createEngineId(InetAddress address, int port) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterpreter_x86_32.cpp56 address AbstractInterpreterGenerator::generate_slow_signature_handler() {
57 address entry = __ pc();
63 __ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::slow_signature_handler), rbx, rdi, rcx);
77 address InterpreterGenerator::generate_empty_entry(void) {
86 address entry_point = __ pc();
108 address InterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) {
116 address entry_point = __ pc();
210 __ pop(rdi); // get return address
220 address InterpreterGenerator::generate_abstract_entry(void) {
228 address entry_poin
[all...]
H A DbytecodeInterpreter_x86.hpp33 address _result_handler; /* temp for saving native result handler */
36 address _extra_junk1; /* temp to save on recompiles */
37 address _extra_junk2; /* temp to save on recompiles */
38 address _extra_junk3; /* temp to save on recompiles */
39 // address dummy_for_native2; /* a native frame result handler would be here... */
40 // address dummy_for_native1; /* native result type stored here in a interpreter native frame */
41 address _extra_junk4; /* temp to save on recompiles */
42 address _extra_junk5; /* temp to save on recompiles */
43 address _extra_junk6; /* temp to save on recompiles */
72 #define STACK_SLOT(offset) ((address)
[all...]
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DConnectedSend.java44 // address without throwing
49 InetAddress address = InetAddress.getLocalHost();
50 if (address.isLoopbackAddress()) {
51 address = InetAddress.getLoopbackAddress();
54 address,
60 address,
82 // that has not been initialized with an address; the legacy
87 InetAddress address = InetAddress.getLocalHost();
88 if (address.isLoopbackAddress()) {
89 address
[all...]
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DIoTraceBase.java37 private InetAddress address; field in class:IoTraceBase
45 address = null;
81 public void socketReadEnd(Object context, InetAddress address, int port, argument
84 this.address = address;
96 public void socketWriteEnd(Object context, InetAddress address, int port, argument
99 this.address = address;
143 if (!address.equals(ia)) {
144 throw new Exception("Incorrect address
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DLinuxUserDefinedFileAttributeView.java65 private List<String> asList(long address, int size) { argument
70 if (unsafe.getByte(address + pos) == 0) {
73 unsafe.copyMemory(null, address+start, value,
107 int n = flistxattr(fd, buffer.address(), size);
108 List<String> list = asList(buffer.address(), n);
162 long address;
165 address = ((sun.nio.ch.DirectBuffer)dst).address() + pos;
169 address = nb.address();
[all...]
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java104 boolean match(Action action, InetAddress address, int port); argument
121 public boolean match(Action action, InetAddress address, int port) { argument
128 // rule to match address[/prefix] port[-end]
133 AddressPortRangeRule(Action action, InetAddress address, argument
137 this.addressAsBytes = address.getAddress();
142 public boolean match(Action action, InetAddress address, int port) { argument
145 byte[] candidate = address.getAddress();
146 // same address type?
159 return super.match(action, address, port);
248 for (InetAddress address
291 convertTcpToSdpIfMatch(FileDescriptor fdObj, Action action, InetAddress address, int port) argument
317 implBeforeTcpBind(FileDescriptor fdObj, InetAddress address, int port) argument
327 implBeforeTcpConnect(FileDescriptor fdObj, InetAddress address, int port) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTableFormat.hpp41 address tag_addr() const { return (address)this; }
42 address cpool_index_addr() const { return tag_addr() + sizeof(u1); }
43 address bci_addr() const { return cpool_index_addr(); }
52 static verification_type_info* at(address addr) {
56 static verification_type_info* create_at(address addr, u1 tag) {
62 static verification_type_info* create_object_at(address addr, u2 cp_idx) {
69 static verification_type_info* create_uninit_at(address addr, u2 bci) {
125 return (verification_type_info*)((address)this + size());
131 bool verify(address star
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DAbstractPlainSocketImpl.java122 InetAddress address = InetAddress.getByName(host);
124 this.address = address;
126 connectToAddress(address, port, timeout);
141 * Creates a socket and connects it to the specified address on
143 * @param address the address
146 protected void connect(InetAddress address, int port) throws IOException { argument
148 this.address = address;
170 connect(SocketAddress address, int timeout) argument
196 connectToAddress(InetAddress address, int port, int timeout) argument
330 doConnect(InetAddress address, int port, int timeout) argument
368 bind(InetAddress address, int lport) argument
441 setAddress(InetAddress address) argument
692 socketConnect(InetAddress address, int port, int timeout) argument
694 socketBind(InetAddress address, int port) argument
[all...]
H A DSocketImpl.java57 * The IP address of the remote end of this socket.
59 protected InetAddress address; field in class:SocketImpl
94 * @param address the IP address of the remote host.
99 protected abstract void connect(InetAddress address, int port) throws IOException; argument
106 * @param address the Socket address of the remote host.
112 protected abstract void connect(SocketAddress address, int timeout) throws IOException; argument
115 * Binds this socket to the specified local IP address and port number.
117 * @param host an IP address tha
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.cpp41 address res = (address) AllocateHeap(alloc_size, mtSymbol);
48 address res = (address)arena->Amalloc(alloc_size);
94 address bytes = (address) ((Symbol*)this)->base();
95 address limit = bytes + utf8_length() - len; // inclusive limit
96 address scan = bytes + i;
100 scan = (address) memchr(scan, first_char, (limit + 1 - scan));
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DProcessAttachingConnector.java41 * on a transport address then this connector reads the transport address
82 * Attach to a target VM using the specified address and Connector arguments.
97 String address = null;
102 address = props.getProperty("sun.jdwp.listenerAddress");
111 if (address == null) {
114 int pos = address.indexOf(':');
119 // parse into transport library name and address
121 final String lib = address.substring(0, pos);
122 address
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCStoreInstruction.java34 public SPARCStoreInstruction(String name, int opcode, SPARCRegisterIndirectAddress address, SPARCRegister register, int dataType) { argument
35 super(name, opcode, address, register, dataType);
54 buf.append(address.toString());
75 buf.append(address.toString());
87 return address;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DCPPExpressions.java37 the address. */
40 private String address; field in class:CPPExpressions.CastExpr
42 private CastExpr(String type, String address) { argument
44 this.address = address;
52 return address;
/openjdk7/jdk/src/share/classes/javax/net/
H A DSocketFactory.java138 * method is called with the host address and <code>port</code>
142 * <code>null</code> for the loopback address.
162 * The socket will also be bound to the local address and port supplied.
167 * method is called with the host address and <code>port</code>
171 * <code>null</code> for the loopback address.
173 * @param localHost the local address the socket is bound to
193 * at the specified address. This socket is configured using
197 * method is called with the host address and <code>port</code>
218 * Creates a socket and connect it to the specified remote address
220 * to the local address an
244 createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) argument
274 createSocket(InetAddress address, int port) argument
287 createSocket(InetAddress address, int port, InetAddress clientAddress, int clientPort) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DicBuffer_sparc.cpp48 void InlineCacheBuffer::assemble_ic_buffer_code(address code_begin, oop cached_oop, address entry_point) {
69 address InlineCacheBuffer::ic_buffer_entry_point(address code_begin) {
76 oop InlineCacheBuffer::ic_buffer_cached_oop(address code_begin) {
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Dthread_linux_sparc.hpp45 address _saved_exception_npc;
68 address o_reg_temps(int i) { return (address)&_o_reg_temps[i]; }
73 address saved_exception_npc() { return _saved_exception_npc; }
74 void set_saved_exception_npc(address a) { _saved_exception_npc = a; }
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dthread_solaris_sparc.hpp44 address _saved_exception_npc;
67 address o_reg_temps(int i) { return (address)&_o_reg_temps[i]; }
72 address saved_exception_npc() { return _saved_exception_npc; }
73 void set_saved_exception_npc(address a) { _saved_exception_npc = a; }
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.inline.hpp60 inline void AbstractAssembler::emit_address(address x) {
61 *(address*)_code_pos = x;
62 _code_pos += sizeof(address);
66 inline address AbstractAssembler::inst_mark() const {
101 inline address AbstractAssembler::target(Label& L) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dicache.cpp29 // The flush stub function address
50 void AbstractICache::call_flush_stub(address start, int lines) {
63 void AbstractICache::invalidate_word(address addr) {
66 // spanning two cache lines by computing a start line address by rounding
67 // addr down to a line_size boundary, and an end line address by adding
78 (*_flush_icache_stub)((address)start_line, start_line == end_line ? 1 : 2, 0);
81 void AbstractICache::invalidate_range(address start, int nbytes) {
84 guarantee(start == CAST_FROM_FN_PTR(address, _flush_icache_stub),
92 // Align start address to an icache line boundary and transform
/openjdk7/hotspot/src/share/vm/services/
H A DmemReporter.hpp95 virtual void reserved_memory_region(MEMFLAGS type, address base, address end, size_t size, address pc) = 0;
96 virtual void committed_memory_region(address base, address end, size_t size, address pc) = 0;
103 virtual void malloc_callsite(address pc, size_t malloc_amt, size_t malloc_count) = 0;
104 virtual void virtual_memory_callsite(address pc, size_t reserved_amt, size_t committed_amt) = 0;
106 virtual void diff_malloc_callsite(address pc, size_t cur_malloc_amt, size_t cur_malloc_count,
108 virtual void diff_virtual_memory_callsite(address p
[all...]
H A DmemTracker.hpp122 void record(address addr, size_t size = 0, MEMFLAGS flags = mtNone, address pc = NULL);
123 void record(address old_addr, address new_addr, size_t size,
124 MEMFLAGS flags, address pc = NULL);
247 static inline void record_malloc(address addr, size_t size, MEMFLAGS flags,
248 address pc = 0, Thread* thread = NULL) {
253 static inline void record_free(address addr, MEMFLAGS flags, Thread* thread = NULL) {
258 static inline void record_arena_size(address addr, size_t size) {
264 static inline void record_virtual_memory_reserve(address add
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp190 // __kernel_dmb on ARM which is accessed via an absolute address.
191 Value* SharkBuilder::make_function(address func,
203 (address) SharkRuntime::find_exception_handler, "TIi", "i");
207 return make_function((address) SharkRuntime::monitorenter, "TM", "v");
211 return make_function((address) SharkRuntime::monitorexit, "TM", "v");
215 return make_function((address) SharkRuntime::new_instance, "Ti", "v");
219 return make_function((address) SharkRuntime::newarray, "Tii", "v");
223 return make_function((address) SharkRuntime::anewarray, "Tii", "v");
227 return make_function((address) SharkRuntime::multianewarray, "TiiI", "v");
231 return make_function((address) SharkRuntim
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.hpp59 static address bcp(JavaThread *thread) { return last_frame(thread).interpreter_frame_bcp(); }
61 static void set_bcp_and_mdp(address bcp, JavaThread*thread);
83 static nmethod* frequency_counter_overflow_inner(JavaThread* thread, address branch_bcp);
108 static address exception_handler_for_exception(JavaThread* thread, oopDesc* exception);
127 static void _breakpoint(JavaThread* thread, methodOopDesc* method, address bcp);
128 static Bytecodes::Code get_original_bytecode_at(JavaThread* thread, methodOopDesc* method, address bcp);
129 static void set_original_bytecode_at(JavaThread* thread, methodOopDesc* method, address bcp, Bytecodes::Code new_code);
142 static int interpreter_contains(address pc);
146 static address slow_signature_handler(JavaThread* thread,
174 static nmethod* frequency_counter_overflow(JavaThread* thread, address branch_bc
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86CallInstruction.java46 long address;
49 address = disp + currentPc;
50 buf.append(symFinder.getSymbolFor(address));

Completed in 79 milliseconds

1234567891011>>