Searched defs:address (Results 76 - 100 of 275) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/java/net/
H A DInet4Address.java33 * This class represents an Internet Protocol version 4 (IPv4) address.
43 * Textual representation of IPv4 address used as input to methods
55 * address.
57 * <p> When a three part address is specified, the last part is
59 * bytes of the network address. This makes the three part address
63 * <p> When a two part address is supplied, the last part is
65 * bytes of the network address. This makes the two part address
70 * the network address withou
123 Inet4Address(String hostName, int address) argument
[all...]
/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/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/
H A DSnmpEngineId.java66 * If a string of the format &lt;address&gt;:&lt;port&gt;:&lt;IANA number&gt; 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...]
H A DSnmpString.java80 * @param address The <CODE>InetAddress </CODE>.
84 public SnmpString(InetAddress address) { argument
85 value = address.getAddress();
94 * @exception UnknownHostException If string value is not a legal address format.
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpIncomingResponse.java47 * Returns the source address.
48 * @return The source address.
95 InetAddress address,
93 decodeMessage(byte[] inputBytes, int byteCount, InetAddress address, int port) argument
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpServerChannel.java88 * to a specific address via one of its socket's {@link #bind bind}
116 * association this method verifies that the address and port number of the
150 * Binds the channel's socket to a local address and configures the socket
160 * The local address to bind the socket, or {@code null} to
161 * bind the socket to an automatically assigned socket address
172 * If the type of the given address is not supported
188 * Binds the channel's socket to a local address and configures the socket
192 * and the local address. Once a relationship is established then
194 * may not necesssarily be with the address {@code local} as it may be
196 * at least one local address boun
279 bindAddress(InetAddress address) argument
325 unbindAddress(InetAddress address) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DGenericListeningConnector.java45 static final String ARG_ADDRESS = "address";
55 * and optionally an "address" connector argument.
70 getString("generic_listening.address.label"),
71 getString("generic_listening.address"),
98 * have "address" and "timeout" connector arguments.
104 public String startListening(String address, Map<String,? extends Connector.Argument> args) argument
113 listener = transportService.startListening(address);
115 return listener.address();
122 String address = argument(ARG_ADDRESS, args).value();
123 return startListening(address, arg
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dperf.cpp71 char* address = 0; variable
90 &address, &capacity, CHECK_NULL);
94 return env->NewDirectByteBuffer(address, (jlong)capacity);
103 void* address = 0; variable
106 // get buffer address and capacity
109 address = env->GetDirectBufferAddress(buffer);
113 PerfMemory::detach((char*)address, capacity, CHECK);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.hpp71 int32_t isStatic; // Indicates whether following field is an offset or an address
73 void* address; // Address of field; only used for static fields member in struct:__anon456
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DOneWayFeature.java120 * @return address of the wsa:ReplyTo header
130 * @param address
132 public void setReplyTo(WSEndpointReference address) { argument
133 this.replyTo = address;
139 * @return address of the wsa:From header
149 * @param address of the wsa:From header
151 public void setFrom(WSEndpointReference address) { argument
152 this.from = address;
158 * @return address of the wsa:FaultTo header
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DClientPipeAssemblerContext.java48 public ClientPipeAssemblerContext(@NotNull EndpointAddress address, @NotNull WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding) { argument
49 this(address, wsdlModel, rootOwner, binding, Container.NONE);
52 public ClientPipeAssemblerContext(@NotNull EndpointAddress address, @NotNull WSDLPort wsdlModel, argument
55 super(address, wsdlModel, rootOwner, binding, container);
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/
H A DDeferredTransportPipe.java43 * This pseudo transport is used when there's no statically known endpoint address,
49 * address, this class implements a simple cache strategy to avoid re-creating
57 private EndpointAddress address; field in class:DeferredTransportPipe
73 this.address = context.getAddress();
85 this.address = that.address;
93 if(request.endpointAddress==address)
103 address = null;
118 address = request.endpointAddress;
134 address
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DHttpEndpoint.java51 private String address; field in class:HttpEndpoint
61 public void publish(String address) { argument
62 this.address = address;
63 httpContext = ServerMgr.getInstance().createContext(address);
88 * @return address of the Endpoint
91 if(address == null) {
95 return address;
100 if (address == null) {
H A DServerMgr.java64 * Creates a HttpContext at the given address. If there is already a server
68 /*package*/ HttpContext createContext(String address) { argument
72 URL url = new URL(address);
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPollArrayWrapper.c134 jlong address, jint numfds,
137 struct epoll_event *events = jlong_to_ptr(address);
133 Java_sun_nio_ch_EPollArrayWrapper_epollWait(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout, jint epfd) argument
H A DPollArrayWrapper.c73 jlong address, jint numfds,
79 a = (struct pollfd *) jlong_to_ptr(address);
72 Java_sun_nio_ch_PollArrayWrapper_poll0(JNIEnv *env, jobject this, jlong address, jint numfds, jlong timeout) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpServerChannelImpl.java60 public SctpServerChannel bindAddress(InetAddress address) argument
66 public SctpServerChannel unbindAddress(InetAddress address) argument
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DSocketDispatcher.c44 jlong address, jint len)
58 buf.buf = (char *)address;
84 jlong address, jint len)
91 struct iovec *iovp = (struct iovec *)address;
140 jlong address, jint total)
156 buf.buf = (char *)address;
183 address += written;
192 jobject fdo, jlong address, jint len)
198 struct iovec *iovp = (struct iovec *)address;
43 Java_sun_nio_ch_SocketDispatcher_read0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
83 Java_sun_nio_ch_SocketDispatcher_readv0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
139 Java_sun_nio_ch_SocketDispatcher_write0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint total) argument
191 Java_sun_nio_ch_SocketDispatcher_writev0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
H A DWindowsAsynchronousFileChannelImpl.c39 jlong handle, jlong address, jint len, jlong offset, jlong ov)
49 (LPVOID) jlong_to_ptr(address),
69 jlong handle, jlong address, jint len, jlong offset, jlong ov)
79 (LPVOID) jlong_to_ptr(address),
38 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_readFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
68 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_writeFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSend.java52 SocketAddress address = null;
62 /* requested to connecct to a specific address */
65 address = new InetSocketAddress(args[0], port);
74 address = server.address();
75 debug("Server started and listening on " + address);
82 doTest(address);
240 public InetSocketAddress address() { method in class:Send.Server
/openjdk7/jdk/test/java/net/Socket/
H A DOldSocketImpl.java47 protected void connect(InetAddress address, int port) throws IOException { } argument
50 // protected void connect(SocketAddress address, int timeout) throws IOException { }
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DBasic.java72 private final InetSocketAddress address; field in class:Basic.Server
79 address = new InetSocketAddress(lh, port);
82 InetSocketAddress address() { method in class:Basic.Server
83 return address;
101 throw new RuntimeException("Local address should be 'null'");
104 // check local address after binding
109 throw new RuntimeException("Not bound to a wildcard address");
171 SocketAddress address;
174 address = server.address();
[all...]
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DLotsOfCancels.java90 InetSocketAddress address = new InetSocketAddress("127.0.0.1", 7359);
97 server.socket().bind(address, 5000);
102 ClientThread client = new ClientThread(address);
201 private final SocketAddress address; field in class:LotsOfCancels.ClientThread
206 ClientThread(SocketAddress address) throws Exception { argument
207 this.address = address;
243 channel.connect(address);

Completed in 69 milliseconds

1234567891011