Searched defs:address (Results 101 - 125 of 275) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DHostAddress.java49 * address [1] OCTET STRING
62 byte[] address = null; field in class:HostAddress
64 private static InetAddress localInetAddress; //caches local inet address
73 if (address != null) {
74 new_hostAddress.address = address.clone();
84 if (address != null) {
85 for (int i=0; i < address.length; i++) {
86 result = 37*result + address[i];
106 (address !
[all...]
/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/jdk/src/share/classes/sun/tools/jconsole/
H A DLocalVirtualMachine.java49 private String address; field in class:LocalVirtualMachine
58 this.address = connectorAddress;
82 return (address != null);
90 if (address != null) {
102 if (address == null) {
104 throw new IOException("Fails to find connector address");
110 return address;
147 String address = null;
153 address = ConnectorAddressLink.importFrom(pid);
159 new LocalVirtualMachine(pid, name, attachable, address));
[all...]
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DIoTraceAgent.java63 public static void socketReadEnd(Object context, InetAddress address, int port, argument
67 l.socketReadEnd(context, address, port, timeout, bytesRead);
79 public static void socketWriteEnd(Object context, InetAddress address, int port, argument
83 l.socketWriteEnd(context, address, port, bytesWritten);
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpController.java53 * <li>com.sun.management.jdp.source_addr - an address of interface to use for broadcast</li>
120 // Parse an inet address from string or return default if provided string is null
132 * @param address - multicast group address
138 public static synchronized void startDiscoveryService(InetAddress address, int port, String instanceName, String url) argument
157 "Invalid source address provided");
176 JdpBroadcaster bcast = new JdpBroadcaster(address, sourceAddress, port, ttl);
/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...]
H A DSolarisAclFileAttributeView.java94 private static void encode(List<AclEntry> acl, long address) { argument
95 long offset = address;
200 private static List<AclEntry> decode(long address, int n) { argument
203 long offset = address + i*SIZEOF_ACE_T;
314 long address = unsafe.allocateMemory(SIZEOF_ACE_T * MAX_ACL_ENTRIES);
317 int n = facl(fd, ACE_GETACL, MAX_ACL_ENTRIES, address);
319 return decode(address, n);
328 unsafe.freeMemory(address);
347 long address = unsafe.allocateMemory(SIZEOF_ACE_T * n);
349 encode(acl, address);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReferenceBuilder.java48 * endpoint by providing the <code>address</code> property.
52 * the <code>address</code> property MUST be specified.
55 * published by the same Java EE application, the <code>address</code>
79 * Sets the <code>address</code> to the
83 * The <code>address</code> MUST be set to a non-<code>null</code>
88 * @param address The address of the endpoint to be targeted
92 * the <code>address</code> set to the <code>wsa:Address</code>.
94 public W3CEndpointReferenceBuilder address(String address) { argument
347 private String address; field in class:W3CEndpointReferenceBuilder
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebugger.java57 /** Parse an address from a hex string in the format "0xFFFFFFFF".
58 The length of the address (i.e., 32 or 64 bits) is platform
125 public ReadResult readBytesFromProcess(long address, long numBytes) argument
128 public void writeBytesToProcess(long address, long numBytes, byte[] data) argument
H A DPage.java65 address space */
87 requested is greater than the page size, or if the start address
112 requested is greater than the page size, or if the start address
127 public boolean getBoolean(long address) { argument
128 return (getByte(address) != 0);
131 public byte getByte(long address) { argument
132 return data[(int) address - (int) baseAddress];
135 public short getShort(long address, boolean bigEndian) { argument
136 int start = (int) address - (int) baseAddress;
148 public char getChar(long address, boolea argument
152 getInt(long address, boolean bigEndian) argument
169 getLong(long address, boolean bigEndian) argument
194 getFloat(long address, boolean bigEndian) argument
198 getDouble(long address, boolean bigEndian) argument
[all...]
H A DPageCache.java79 public synchronized boolean getBoolean(long address) { argument
80 return (getByte(address) != 0);
83 public synchronized byte getByte(long address) { argument
84 return checkPage(getPage(address & pageMask), address).getByte(address);
87 public synchronized short getShort(long address, boolean bigEndian) { argument
88 return checkPage(getPage(address & pageMask), address).getShort(address, bigEndia
91 getChar(long address, boolean bigEndian) argument
95 getInt(long address, boolean bigEndian) argument
99 getLong(long address, boolean bigEndian) argument
103 getFloat(long address, boolean bigEndian) argument
107 getDouble(long address, boolean bigEndian) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebugger.java36 public String addressValueToString(long address) throws DebuggerException; argument
37 public boolean readJBoolean(long address) throws DebuggerException; argument
38 public byte readJByte(long address) throws DebuggerException; argument
39 public char readJChar(long address) throws DebuggerException; argument
40 public double readJDouble(long address) throws DebuggerException; argument
41 public float readJFloat(long address) throws DebuggerException; argument
42 public int readJInt(long address) throws DebuggerException; argument
43 public long readJLong(long address) throws DebuggerException; argument
44 public short readJShort(long address) throws DebuggerException; argument
45 public long readCInteger(long address, lon argument
47 readAddress(long address) argument
48 readCompOopAddress(long address) argument
49 readOopHandle(long address) argument
50 readCompOopHandle(long address) argument
58 lookup(long address) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDebugEvent.java34 private Address address; field in class:BasicDebugEvent
47 public Address getAddress() { return address; }
55 public void setAddress(Address address) { this.address = address; } argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxDebugger.java36 public String addressValueToString(long address) throws DebuggerException; argument
37 public boolean readJBoolean(long address) throws DebuggerException; argument
38 public byte readJByte(long address) throws DebuggerException; argument
39 public char readJChar(long address) throws DebuggerException; argument
40 public double readJDouble(long address) throws DebuggerException; argument
41 public float readJFloat(long address) throws DebuggerException; argument
42 public int readJInt(long address) throws DebuggerException; argument
43 public long readJLong(long address) throws DebuggerException; argument
44 public short readJShort(long address) throws DebuggerException; argument
45 public long readCInteger(long address, lon argument
47 readAddress(long address) argument
48 readCompOopAddress(long address) argument
49 readOopHandle(long address) argument
50 readCompOopHandle(long address) argument
58 lookup(long address) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFHeader.java99 /** Returns the elf symbol with the specified address or null if one is not
100 * found. 'address' is relative to base of shared object for .so's. */
101 public ELFSymbol getELFSymbol(long address); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcDebugger.java37 public String addressValueToString(long address) throws DebuggerException; argument
38 public boolean readJBoolean(long address) throws DebuggerException; argument
39 public byte readJByte(long address) throws DebuggerException; argument
40 public char readJChar(long address) throws DebuggerException; argument
41 public double readJDouble(long address) throws DebuggerException; argument
42 public float readJFloat(long address) throws DebuggerException; argument
43 public int readJInt(long address) throws DebuggerException; argument
44 public long readJLong(long address) throws DebuggerException; argument
45 public short readJShort(long address) throws DebuggerException; argument
46 public long readCInteger(long address, lon argument
48 readAddress(long address) argument
49 readCompOopAddress(long address) argument
50 readOopHandle(long address) argument
51 readCompOopHandle(long address) argument
60 lookup(long address) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteDebugger.java56 public ReadResult readBytesFromProcess(long address, long numBytes) throws RemoteException; argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebugger.java36 public String addressValueToString(long address) throws DebuggerException; argument
37 public boolean readJBoolean(long address) throws DebuggerException; argument
38 public byte readJByte(long address) throws DebuggerException; argument
39 public char readJChar(long address) throws DebuggerException; argument
40 public double readJDouble(long address) throws DebuggerException; argument
41 public float readJFloat(long address) throws DebuggerException; argument
42 public int readJInt(long address) throws DebuggerException; argument
43 public long readJLong(long address) throws DebuggerException; argument
44 public short readJShort(long address) throws DebuggerException; argument
45 public long readCInteger(long address, lon argument
47 readAddress(long address) argument
48 readCompOopAddress(long address) argument
49 readOopHandle(long address) argument
50 readCompOopHandle(long address) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java124 private Address address; field in class:ObjectListPanel.AddressWrapper
126 private AddressWrapper(Address address) { argument
127 this.address = address;
131 return address.toString();
136 Address addr = wrapper.address;
137 if (AddressOps.lessThan(address, addr)) return -1;
138 if (AddressOps.greaterThan(address, addr)) return 1;
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLServerSocket.java163 * If <i>address</i> is null, it will default accepting connections
169 * @param address the address of the network interface through
179 protected SSLServerSocket(int port, int backlog, InetAddress address) argument
181 { super(port, backlog, address); }
H A DSSLSocket.java157 * method is called with the host address and <code>port</code>
161 * <code>null</code> for the loopback address.
179 * Constructs a TCP connection to a server at a specified address
183 * method is called with the host address and <code>port</code>
186 * @param address the server's host
194 * @throws NullPointerException if <code>address</code> is null.
197 protected SSLSocket(InetAddress address, int port) argument
199 { super(address, port); }
205 * binding the client side of the connection a given address and port.
209 * method is called with the host address an
259 SSLSocket(InetAddress address, int port, InetAddress clientAddress, int clientPort) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DDatagramSocketImpl.java58 * Binds a datagram socket to a local port and address.
60 * @param laddr the local address
68 * destination address to send the packet to.
80 * address with the local socket so that datagrams may only be sent to this destination
86 * packet has been received for that address, then a subsequent call to
89 * @param address the remote InetAddress to connect to
95 protected void connect(InetAddress address, int port) throws SocketException {} argument
105 * to the address which the packet came from.
184 * @param inetaddr multicast address to join.
192 * @param inetaddr multicast address t
[all...]
/openjdk7/jdk/src/share/classes/java/nio/
H A DBuffer.java184 long address; field in class:Buffer
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DSnmpAcl.java74 * The current IP address will be the owner of the ACL.
89 * The current IP address will be the owner of the ACL.
252 * @param address The host address to check.
256 public boolean checkReadPermission(InetAddress address) { argument
258 PrincipalImpl p = new PrincipalImpl(address);
265 * @param address The host address to check.
270 public boolean checkReadPermission(InetAddress address, String community) { argument
272 PrincipalImpl p = new PrincipalImpl(address);
294 checkWritePermission(InetAddress address) argument
308 checkWritePermission(InetAddress address, String community) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpMsg.java69 * Source or destination address.
73 public InetAddress address = null; field in class:SnmpMsg

Completed in 68 milliseconds

1234567891011