HomeSort by relevance Sort by last modified time
    Searched full:dclass (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/smack/src/org/xbill/DNS/
RTRecord.java 29 RTRecord(Name name, int dclass, long ttl, int preference,
32 super(name, Type.RT, dclass, ttl, preference, "preference",
Generator.java 32 public final int dclass; field in class:Generator
65 * @param dclass The class of the generated records.
71 * @throws IllegalArgumentException The dclass is not a valid class.
75 int type, int dclass, long ttl, String rdataPattern, Name origin)
82 DClass.check(dclass);
89 this.dclass = dclass;
222 return Record.fromString(name, type, dclass, ttl, rdata, origin);
237 list.add(Record.fromString(name, type, dclass, ttl
    [all...]
DNSKEYRecord.java 56 DNSKEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg,
59 super(name, Type.DNSKEY, dclass, ttl, flags, proto, alg, key);
72 DNSKEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg,
75 super(name, Type.DNSKEY, dclass, ttl, flags, proto, alg,
Lookup.java 41 private int dclass; field in class:Lookup
121 * @param dclass The class whose cache is being retrieved.
125 getDefaultCache(int dclass) {
126 DClass.check(dclass);
127 Cache c = (Cache) defaultCaches.get(Mnemonic.toInteger(dclass));
129 c = new Cache(dclass);
130 defaultCaches.put(Mnemonic.toInteger(dclass), c);
139 * @param dclass The class whose cache is being set.
142 setDefaultCache(Cache cache, int dclass) {
    [all...]
AAAARecord.java 32 AAAARecord(Name name, int dclass, long ttl, InetAddress address) {
33 super(name, Type.AAAA, dclass, ttl);
NULLRecord.java 32 NULLRecord(Name name, int dclass, long ttl, byte [] data) {
33 super(name, Type.NULL, dclass, ttl);
RPRecord.java 35 RPRecord(Name name, int dclass, long ttl, Name mailbox, Name textDomain) {
36 super(name, Type.RP, dclass, ttl);
RRSIGRecord.java 42 RRSIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl,
46 super(name, Type.RRSIG, dclass, ttl, covered, alg, origttl, expire,
SIGRecord.java 42 SIGRecord(Name name, int dclass, long ttl, int covered, int alg, long origttl,
46 super(name, Type.SIG, dclass, ttl, covered, alg, origttl, expire,
DSRecord.java 58 DSRecord(Name name, int dclass, long ttl, int footprint, int alg,
61 super(name, Type.DS, dclass, ttl);
74 DSRecord(Name name, int dclass, long ttl, int digestid, DNSKEYRecord key)
76 this(name, dclass, ttl, key.getFootprint(), key.getAlgorithm(),
GPOSRecord.java 47 GPOSRecord(Name name, int dclass, long ttl, double longitude, double latitude,
50 super(name, Type.GPOS, dclass, ttl);
65 GPOSRecord(Name name, int dclass, long ttl, String longitude, String latitude,
68 super(name, Type.GPOS, dclass, ttl);
ARecord.java 50 ARecord(Name name, int dclass, long ttl, InetAddress address) {
51 super(name, Type.A, dclass, ttl);
HINFORecord.java 33 HINFORecord(Name name, int dclass, long ttl, String cpu, String os) {
34 super(name, Type.HINFO, dclass, ttl);
ISDNRecord.java 34 ISDNRecord(Name name, int dclass, long ttl, String address, String subAddress) {
35 super(name, Type.ISDN, dclass, ttl);
MINFORecord.java 37 MINFORecord(Name name, int dclass, long ttl,
40 super(name, Type.MINFO, dclass, ttl);
NSAPRecord.java 66 NSAPRecord(Name name, int dclass, long ttl, String address) {
67 super(name, Type.NSAP, dclass, ttl);
PXRecord.java 35 PXRecord(Name name, int dclass, long ttl, int preference,
38 super(name, Type.PX, dclass, ttl);
SSHFPRecord.java 49 SSHFPRecord(Name name, int dclass, long ttl, int alg, int digestType,
52 super(name, Type.SSHFP, dclass, ttl);
X25Record.java 46 X25Record(Name name, int dclass, long ttl, String address) {
47 super(name, Type.X25, dclass, ttl);
NSEC3PARAMRecord.java 40 * @param dclass The class.
47 public NSEC3PARAMRecord(Name name, int dclass, long ttl, int hashAlg,
50 super(name, Type.NSEC3PARAM, dclass, ttl);
A6Record.java 36 A6Record(Name name, int dclass, long ttl, int prefixBits,
39 super(name, Type.A6, dclass, ttl);
DLVRecord.java 45 DLVRecord(Name name, int dclass, long ttl, int footprint, int alg,
48 super(name, Type.DLV, dclass, ttl);
  /external/clang/test/SemaObjC/
property-4.m 12 @property int Dclass;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_opcodes.py 29 class DClass(AClass):
65 try: raise DClass, a
66 except DClass, v:
67 self.assertIsInstance(v, DClass)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_opcodes.py 29 class DClass(AClass):
65 try: raise DClass, a
66 except DClass, v:
67 self.assertIsInstance(v, DClass)

Completed in 186 milliseconds

12 3 4