/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/ |
H A D | DummySymbolFinder.java | 28 public String getSymbolFor(long address) { argument 29 return "0x" + Long.toHexString(address);
|
H A D | SymbolFinder.java | 27 // SymbolFinder gets Symbol for a given address. 30 // return address value as hex string if no symbol associated with the given address. 31 public String getSymbolFor(long address); argument
|
/openjdk7/jdk/src/share/classes/java/util/zip/ |
H A D | ZStreamRef.java | 34 private long address; field in class:ZStreamRef 35 ZStreamRef (long address) { argument 36 this.address = address; 39 long address() { method in class:ZStreamRef 40 return address; 44 address = 0;
|
/openjdk7/jdk/src/share/classes/sun/nio/ch/ |
H A D | DirectBuffer.java | 33 public long address(); method in interface:DirectBuffer
|
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/ |
H A D | SendFailedNotification.java | 58 * Returns the address. 60 * @return The peer primary address of the association or the address that 63 public abstract SocketAddress address(); method in class:SendFailedNotification
|
/openjdk7/jdk/src/windows/classes/sun/net/ |
H A D | NetHooks.java | 42 InetAddress address, 53 InetAddress address, 41 beforeTcpBind(FileDescriptor fdObj, InetAddress address, int port) argument 52 beforeTcpConnect(FileDescriptor fdObj, InetAddress address, int port) argument
|
/openjdk7/jdk/test/java/net/MulticastSocket/ |
H A D | Test.java | 38 void doTest(String address) throws Exception { argument 41 InetAddress ia = InetAddress.getByName(address); 129 * Assume machine has IPv4 address
|
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/ |
H A D | JvmstatCountersTest.java | 48 public static void checkAddress(String address) throws IOException { argument 49 System.out.println("Address = " + address); 50 JMXServiceURL url = new JMXServiceURL(address);
|
H A D | TestManager.java | 87 private static void connect(String pid, String address) throws Exception { argument 88 if (address == null) { 89 throw new RuntimeException("Local connector address for " + 93 System.out.println("Connect to process " + pid + " via: " + address); 95 JMXServiceURL url = new JMXServiceURL(address); 125 // No JMX Connector address so attach to VM, and load 135 // Test address obtained from agent properties 136 System.out.println("Testing the connector address from agent properties"); 139 // Test address obtained from jvmstat buffer 140 System.out.println("Testing the connector address fro [all...] |
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/simple/ |
H A D | DefaultCaching.java | 83 static void test (String host, String address, argument 85 test (host, address, shouldSucceed); 98 static void test (String host, String address, boolean shouldSucceed) { argument 103 throw new RuntimeException (host+":"+address+": should fail"); 106 if (!address.equals(addr.getHostAddress())) { 107 throw new RuntimeException(host+":"+address+": compare failed"); 111 throw new RuntimeException(host+":"+address+": should succeed");
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | X86MoveLoadInstruction.java | 31 public X86MoveLoadInstruction(String name, X86Register register, Address address, int dataType, int size, int prefixes) { argument 32 super(name, address, register, dataType, size, prefixes); 52 buf.append(address.toString()); 57 return address;
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/ |
H A D | SharedObject.java | 39 protected Address newAddress(long address) { argument 40 return dbg.newAddress(address);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ |
H A D | SharedObject.java | 39 protected Address newAddress(long address) { argument 40 return dbg.newAddress(address);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/ |
H A D | SharedObject.java | 39 protected Address newAddress(long address) { argument 40 return dbg.newAddress(address);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | FreeList.java | 56 public FreeList(Address address) { argument 57 super(address);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ |
H A D | BasicObjectLock.java | 66 public Address address() { return addr; } method in class:BasicObjectLock
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/ |
H A D | CodeViewerPanel.java | 40 protected HistoryComboBox address; field in class:CodeViewerPanel 56 address.setText(description.substring(equalToIndex + 1)); 70 address = new HistoryComboBox(); 71 topPanel.add(address, BorderLayout.CENTER); 83 address.addActionListener(new ActionListener() { 92 if (address.getText() != null && !address.getText().equals("")) { 93 contentEditor.setText(htmlGen.genHTMLForAddress(address.getText())); 98 address.setText(addr.toString());
|
/openjdk7/jdk/src/share/classes/javax/net/ |
H A D | SocketFactory.java | 138 * 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/jdk/src/share/classes/java/net/ |
H A D | InterfaceAddress.java | 29 * This class represents a Network Interface address. In short it's an 30 * IP address, a subnet mask and a broadcast address when the address is 31 * an IPv4 one. An IP address and a network prefix length in the case 32 * of IPv6 address. 38 private InetAddress address = null; field in class:InterfaceAddress 50 * Returns an <code>InetAddress</code> for this address. 52 * @return the <code>InetAddress</code> for this address. 55 return address; [all...] |
H A D | Proxy.java | 30 * a socket address. 90 * @throws IllegalArgumentException when the type and the address are 95 throw new IllegalArgumentException("type " + type + " is not compatible with address " + sa); 110 * Returns the socket address of the proxy, or 116 public SocketAddress address() { method in class:Proxy 123 * and concatenating " @ " and the toString() result from its address 131 return type() + " @ " + address(); 141 * address if both the SocketAddresses and type are equal. 153 if (address() == null) { 154 return (p.address() [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/ |
H A D | JDMIpAddress.java | 37 protected StringBuffer address= new StringBuffer(); field in class:JDMIpAddress 56 return address.toString(); 61 return new PrincipalImpl(address.toString());
|
H A D | JDMIpMask.java | 37 protected StringBuffer address= new StringBuffer(); field in class:JDMIpMask 56 return address.toString(); 61 return new GroupImpl(address.toString());
|
H A D | JDMNetMask.java | 33 protected StringBuffer address= new StringBuffer(); field in class:JDMNetMask 51 return address.toString(); 56 return new NetMaskImpl(address.toString(), Integer.parseInt(mask));
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/ |
H A D | InetAddressAcl.java | 34 * Defines the IP address based ACL used by the SNMP protocol adaptor. 53 * @param address The host address to check. 57 public boolean checkReadPermission(InetAddress address); argument 62 * @param address The host address to check. 67 public boolean checkReadPermission(InetAddress address, String community); argument 81 * @param address The host address to check. 85 public boolean checkWritePermission(InetAddress address); argument 95 checkWritePermission(InetAddress address, String community) argument 111 getTrapCommunities(InetAddress address) argument 127 getInformCommunities(InetAddress address) argument [all...] |
H A D | SnmpPdu.java | 79 * Source or destination address. 84 public InetAddress address ; field in class:SnmpPdu
|