Searched defs:address (Results 51 - 75 of 275) sorted by relevance

1234567891011

/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/asm/x86/
H A DX86MemoryInstruction.java31 final protected Address address; field in class:X86MemoryInstruction
36 public X86MemoryInstruction(String name, Address address, X86Register register, int dataType, int size, int prefixes) { argument
38 this.address = address;
51 buf.append(address.toString());
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/ui/
H A DSAListener.java58 public void showCodeViewer(Address address); argument
H A DSAPanel.java109 public void showCodeViewer(Address address) { argument
112 listener.showCodeViewer(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/com/sun/jmx/snmp/IPAcl/
H A DPrincipalImpl.java60 * <LI> an IP address
75 * Constructs a principal using an Internet Protocol (IP) address.
77 * @param address the Internet Protocol (IP) address.
79 public PrincipalImpl(InetAddress address) { argument
81 add[0] = address;
123 * Returns a string representation of this principal. In case of multiple address, the first one is returned.
132 * Returns the Internet Protocol (IP) address for this principal. In case of multiple address, the first one is returned.
134 * @return the Internet Protocol (IP) address fo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DMessageInfo.java76 * @param address
77 * For a connected {@code SctpChannel} the address is the
78 * preferred peer address of the association to send the message
79 * to, or {@code null} to use the peer primary address. For an
80 * {@code SctpMultiChannel} the address is used to determine
82 * address then one is setup.
92 public static MessageInfo createOutgoing(SocketAddress address, argument
97 return new sun.nio.ch.SctpMessageInfoImpl(null, address, streamNumber);
114 * @param address
115 * The preferred peer address o
127 createOutgoing(Association association, SocketAddress address, int streamNumber) argument
149 public abstract SocketAddress address(); method in class:MessageInfo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DGenericAttachingConnector.java47 static final String ARG_ADDRESS = "address";
56 * "address" connector argument.
72 getString("generic_attaching.address.label"),
73 getString("generic_attaching.address"),
99 * will have address and timeout connector arguments.
106 * Attach to a target VM using the specified address and Connector arguments.
108 public VirtualMachine attach(String address, Map args) argument
116 Connection connection = transportService.attach(address, timeout, 0);
121 * Attach to a target VM using the specified arguments - the address
122 * of the target VM is specified by the <code>address</cod
[all...]
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DNMethod.java31 private long address; field in class:NMethod
36 address = a;
46 return address;
49 public void setAddress(long address) { argument
50 this.address = address;
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPoll.c87 jint epfd, jlong address, jint numfds)
89 struct epoll_event *events = jlong_to_ptr(address);
86 Java_sun_nio_ch_EPoll_epollWait(JNIEnv *env, jclass c, jint epfd, jlong address, jint numfds) argument
H A DKQueue.c88 jint kqfd, jlong address, jint nevents)
90 struct kevent *events = jlong_to_ptr(address);
87 Java_sun_nio_ch_KQueue_keventPoll(JNIEnv *env, jclass c, jint kqfd, jlong address, jint nevents) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
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/jdk/src/windows/native/sun/nio/ch/
H A DDatagramDispatcher.c48 jlong address, jint len)
58 buf.buf = (char *)address;
89 jobject fdo, jlong address, jint len)
96 struct iovec *iovp = (struct iovec *)address;
137 jobject fdo, jlong address, jint len)
146 buf.buf = (char *)address;
177 jobject fdo, jlong address, jint len)
183 struct iovec *iovp = (struct iovec *)address;
47 Java_sun_nio_ch_DatagramDispatcher_read0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
88 Java_sun_nio_ch_DatagramDispatcher_readv0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
136 Java_sun_nio_ch_DatagramDispatcher_write0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
176 Java_sun_nio_ch_DatagramDispatcher_writev0(JNIEnv *env, jclass clazz, jobject fdo, jlong address, jint len) argument
/openjdk7/jdk/test/demo/jvmti/
H A DHeapUser.java41 String address; field in class:Pet
/openjdk7/jdk/src/share/classes/sun/misc/
H A DIoTrace.java83 * @param address
84 * the remote address the socket is bound to
94 public static void socketReadEnd(Object context, InetAddress address, int port, argument
113 * @param address
114 * the remote address the socket is bound to
121 public static void socketWriteEnd(Object context, InetAddress address, int port, argument
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DNativeDispatcher.java38 abstract int read(FileDescriptor fd, long address, int len) argument
49 int pread(FileDescriptor fd, long address, int len, long position) argument
55 abstract long readv(FileDescriptor fd, long address, int len) argument
58 abstract int write(FileDescriptor fd, long address, int len) argument
61 int pwrite(FileDescriptor fd, long address, int len, long position) argument
67 abstract long writev(FileDescriptor fd, long address, int len) argument
H A DSctpMessageInfoImpl.java35 private final SocketAddress address; field in class:SctpMessageInfoImpl
47 SocketAddress address,
50 this.address = address;
57 SocketAddress address,
64 this.address = address;
90 public SocketAddress address() { method in class:SctpMessageInfoImpl
91 return address;
160 sb.append( "[Address: ").append(address)
46 SctpMessageInfoImpl(Association association, SocketAddress address, int streamNumber) argument
56 SctpMessageInfoImpl(int assocId, SocketAddress address, int bytes, int streamNumber, boolean complete, boolean unordered, int ppid) argument
[all...]
/openjdk7/jdk/src/solaris/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);
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 DSctpPeerAddrChange.java50 private SocketAddress address; field in class:SctpPeerAddrChange
54 private SctpPeerAddrChange(int assocId, SocketAddress address, int intEvent) { argument
78 this.address = address;
92 public SocketAddress address() { method in class:SctpPeerAddrChange
93 assert address != null;
94 return address;
113 sb.append("Address: ").append(address);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReference.java93 this.address = epr.address;
127 private Address address; field in class:W3CEndpointReference
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DInterOperableNamingImpl.java364 * @param address which is ip based host name
368 public String createURLBasedAddress( String address, String name ) argument
372 if( ( address == null )
373 ||( address.length() == 0 ) ) {
377 theurl = "corbaname:" + address + "#" + encode( name );
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicField.java36 private Address address; field in class:BasicField
66 /** Static fields only: set address of field. The resolution
67 mechanism will automatically attempt to find the address of the
69 in the database if the address has not been set. */
70 public void setAddress(Address address) { argument
72 this.address = address;
75 /** Static fields only: get address of field */
78 return address;
84 if (address
[all...]
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLSocketFactory.java221 public Socket createSocket(InetAddress address, int port) argument
234 public Socket createSocket(InetAddress address, int port, argument
/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 74 milliseconds

1234567891011