Searched defs:rrtype (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DResolver.java74 * Useful values of rrtype are ResourceRecord.[Q]TYPE_xxx.
78 ResourceRecords query(DnsName fqdn, int rrclass, int rrtype, argument
81 return dnsClient.query(fqdn, rrclass, rrtype, recursion, auth);
H A DResourceRecord.java95 int rrtype; // type field of RR field in class:ResourceRecord
96 String rrtypeName; // name of of rrtype
151 return rrtype;
163 public static String getTypeName(int rrtype) { argument
164 return valueToName(rrtype, rrTypeNames);
244 rrtype = getUShort(pos); // TYPE
245 rrtypeName = (rrtype < rrTypeNames.length)
246 ? rrTypeNames[rrtype]
249 rrtypeName = Integer.toString(rrtype);
270 (rrtype
[all...]
H A DDnsContext.java287 getResolver().query(fqdn, lookupCT.rrclass, lookupCT.rrtype,
431 getResolver().query(fqdn, ct.rrclass, ct.rrtype,
612 int rrtype = rr.getType();
615 if (!classAndTypeMatch(rrclass, rrtype, cts)) {
619 String attrId = toAttrId(rrclass, rrtype);
631 * Returns true if rrclass and rrtype match some element of cts.
636 private static boolean classAndTypeMatch(int rrclass, int rrtype, argument
645 boolean typeMatch = (ct.rrtype == ANY) ||
646 (ct.rrtype == rrtype);
668 toAttrId(int rrclass, int rrtype) argument
943 int rrtype; field in class:CT
945 CT(int rrclass, int rrtype) argument
[all...]

Completed in 33 milliseconds