Searched refs:addrType (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/
H A DRefAddr.java63 protected String addrType; field in class:RefAddr
68 * @param addrType A non-null string describing the type of the address.
70 protected RefAddr(String addrType) { argument
71 this.addrType = addrType;
80 return addrType;
108 if (addrType.compareTo(target.addrType) == 0) {
130 ? addrType.hashCode()
131 : addrType
[all...]
H A DStringRefAddr.java65 * @param addrType A non-null string describing the type of the address.
68 public StringRefAddr(String addrType, String addr) { argument
69 super(addrType);
H A DBinaryRefAddr.java76 * @param addrType A non-null string describing the type of the address.
80 public BinaryRefAddr(String addrType, byte[] src) { argument
81 this(addrType, src, 0, src.length);
88 * @param addrType A non-null string describing the type of the address.
96 public BinaryRefAddr(String addrType, byte[] src, int offset, int count) { argument
97 super(addrType);
126 if (addrType.compareTo(target.addrType) == 0) {
151 int hash = addrType.hashCode();
168 StringBuffer str = new StringBuffer("Address Type: " + addrType
[all...]
H A DReference.java217 * Retrieves the first address that has the address type 'addrType'.
220 * @param addrType The non-null address type for which to find the address.
221 * @return The address in this reference with address type 'addrType;
224 public RefAddr get(String addrType) { argument
229 if (addr.getType().compareTo(addrType) == 0)
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DHostAddress.java61 int addrType; field in class:HostAddress
72 new_hostAddress.addrType = addrType;
83 result = 37*result + addrType;
105 if (addrType != h.addrType ||
139 if (addrType == Krb5.ADDRTYPE_INET ||
140 addrType == Krb5.ADDRTYPE_INET6) {
160 addrType = getAddrType(inetAddress);
205 addrType
[all...]
H A DHostAddresses.java255 cos.write16(addresses[i].addrType);
272 if ((addresses[i].addrType == Krb5.ADDRTYPE_INET) ||
273 (addresses[i].addrType == Krb5.ADDRTYPE_INET6)) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DCCacheInputStream.java210 int numAddrs, addrType, addrLength;
215 addrType = read(2);
226 addrs[i] = new HostAddress(addrType, result);

Completed in 42 milliseconds