HomeSort by: relevance | last modified time | path
    Searched defs:zone (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/external/bsd/ntp/dist/libntp/lib/isc/
netscope.c 41 isc_uint32_t zone; local
61 zone = (isc_uint32_t)ifid;
69 zone = (isc_uint32_t)(llz & 0xffffffffUL);
70 if (zone != llz)
76 *zoneid = zone;
  /src/external/mpl/bind/dist/lib/isc/
netscope.c 34 uint32_t zone = 0; local
59 zone = (uint32_t)ifid;
68 zone = (uint32_t)(llz & 0xffffffffUL);
69 if (zone != llz) {
76 *zoneid = zone;
getaddresses.c 70 uint32_t zone = 0; local
89 &in6, &zone);
97 isc_netaddr_setzone(&na, zone);
  /src/external/mpl/dhcp/bind/dist/lib/isc/
netscope.c 34 uint32_t zone = 0; local
59 zone = (uint32_t)ifid;
68 zone = (uint32_t)(llz & 0xffffffffUL);
69 if (zone != llz) {
76 *zoneid = zone;
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
netaddr.h 47 isc_uint32_t zone; member in struct:isc_netaddr
119 isc_netaddr_setzone(isc_netaddr_t *netaddr, isc_uint32_t zone);
  /src/external/gpl2/rcs/dist/src/
partime.h 63 long zone; member in struct:partime
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
netaddr.h 48 uint32_t zone; member in struct:isc_netaddr
120 isc_netaddr_setzone(isc_netaddr_t *netaddr, uint32_t zone);
  /src/lib/libc/compat/gen/
compat_timezone.c 64 static char czone[TZ_MAX_CHARS]; /* space for zone name */
67 timezone(int zone, int dst)
83 return(_tztab(zone,dst)); /* default: table or created zone */
86 static const struct zone { struct
111 * check static tables or create a new zone name; broken out so that
112 * we can make a guess as to what the zone is if the standard tables
117 _tztab(int zone, int dst)
119 const struct zone *zp;
123 if (zp->offset == zone) {
    [all...]
  /src/lib/libutil/
parsedate.y 138 | zone { param->yyHaveZone++; }
325 zone: label
623 { "eet", tZONE, -HOUR(2) }, /* Eastern Europe, USSR Zone 1 */
624 { "bt", tZONE, -HOUR(3) }, /* Baghdad, USSR Zone 2 */
626 { "zp4", tZONE, -HOUR(4) }, /* USSR Zone 3 */
627 { "zp5", tZONE, -HOUR(5) }, /* USSR Zone 4 */
629 { "zp6", tZONE, -HOUR(6) }, /* USSR Zone 5 */
634 { "sst", tZONE, -HOUR(7) }, /* South Sumatra, USSR Zone 6 */
644 { "cct", tZONE, -HOUR(8) }, /* China Coast, USSR Zone 7 */
647 { "jst", tZONE, -HOUR(9) }, /* Japan Standard, USSR Zone 8 *
    [all...]
  /src/external/mpl/bind/dist/lib/dns/include/dns/
callbacks.h 62 dns_zone_t *zone; member in struct:dns_rdatacallbacks
  /src/external/mpl/bind/dist/lib/isc/include/isc/
netaddr.h 42 uint32_t zone; member in struct:isc_netaddr
116 isc_netaddr_setzone(isc_netaddr_t *netaddr, uint32_t zone);
  /src/external/mpl/bind/dist/tests/dns/
zonemgr_test.c 34 #include <dns/zone.h>
54 /* create zone manager */
69 /* manage and release a zone */
72 dns_zone_t *zone = NULL; local
79 result = dns_test_makezone("foo", &zone, NULL, false);
85 result = dns_zonemgr_managezone(myzonemgr, zone);
90 dns_zonemgr_releasezone(myzonemgr, zone);
91 dns_zone_detach(&zone);
102 /* create and release a zone */
105 dns_zone_t *zone = NULL local
131 dns_zone_t *zone = NULL; local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
callbacks.h 49 * format zone file.
58 dns_zone_t *zone; member in struct:dns_rdatacallbacks
  /src/external/bsd/nsd/dist/
nsd-checkzone.c 37 fprintf(stderr, "Usage: nsd-checkzone [-p] <zone name> <zone file>\n");
38 fprintf(stderr, "\t-p\tprint the zone if the zone is ok\n");
39 fprintf(stderr, "\t-i <old zone file>\tcreate an IXFR from the differences between the\n\t\told zone file and the new zone file. Writes to \n\t\t<zonefile>.ixfr and renames other <zonefile>.ixfr files to\n\t\t<zonefile>.ixfr.num+1.\n");
52 zone_type* zone; local
61 error("cannot parse zone name '%s'", name);
67 zone = namedb_zone_create(nsd->db, dname, zo)
    [all...]
dbaccess.c 51 /** create a zone */
56 zone_type* zone = (zone_type *) region_alloc(db->region, local
58 zone->node = radname_insert(db->zonetree, dname_name(dname),
59 dname->name_size, zone);
60 assert(zone->node);
61 zone->apex = domain_table_insert(db->domains, dname);
62 zone->apex->usage++; /* the zone.apex reference */
63 zone->apex->is_apex = 1;
64 zone->soa_rrset = NULL
370 zone_type* zone; local
    [all...]
ixfr.h 16 struct zone;
25 /* data structure that stores IXFR contents for a zone. */
104 /* the zone info, with options and zone ixfr reference */
105 struct zone* zone; member in struct:ixfr_store
124 * When done, the finish routine links the data into the memory for the zone.
128 * zone: the zone structure
135 struct ixfr_store* ixfr_store_start(struct zone* zone
    [all...]
verify.h 24 * Track position in zone to feed verifier more data as the input descriptor
60 struct zone *zone; member in struct:verifier
70 struct zone *verify_next_zone(struct nsd *nsd, struct zone *zone);
72 void verify_zone(struct nsd *nsd, struct zone *zone);
  /src/external/gpl2/xcvs/dist/lib/
getdate.y 152 /* tm_isdst flag for the local zone. */
155 /* Time zone, in minutes east of UTC. */
188 /* Table of local time zone abbrevations, terminated by a null entry. */
252 | zone
353 zone: label
686 /* The universal time zone table. These labels can be used even for
697 /* The time zone table. This table is necessarily incomplete, as time
698 zone abbreviations are ambiguous; e.g. Australians interpret "EST"
700 You cannot rely on getdate to handle arbitrary time zone
754 /* Military time zone table. *
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/checkds/
tests_checkds.py 58 def has_signed_apex_nsec(zone, response):
64 labelcount = zone.count(".") # zone is specified as FQDN
66 match = f"{zone} {ttl} IN NSEC {nextname}{zone} {types}"
67 sig = f"{zone} {ttl} IN RRSIG NSEC 13 {labelcount} 300"
90 def verify_zone(zone, transfer):
94 filename = f"{zone}out"
101 verify_cmd = [verify, "-z", "-o", zone, filename]
106 isctest.log.error(f"dnssec-verify {zone} failed"
201 zone="reference.explicit.dspublish.ns2", variable in class:CheckDSTest
207 zone="resolver.explicit.dspublish.ns2", variable in class:CheckDSTest
213 zone="resolver.explicit.dsremoved.ns5", variable in class:CheckDSTest
221 zone="no-ent.ns2", variable
226 zone="no-ent.ns5", variable
404 zone="good.no.dspublish.ns2", variable
409 zone="good.no.dspublish.ns2-4", variable
414 zone="good.no.dsremoved.ns5", variable
419 zone="good.no.dsremoved.ns5-7", variable
    [all...]
  /src/external/mpl/bind/dist/lib/ns/
notify.c 24 #include <dns/zone.h>
81 dns_zone_t *zone = NULL; local
115 /* The zone section must have exactly one name. */
152 &zone);
154 dns_zonetype_t zonetype = dns_zone_gettype(zone);
164 "received notify for zone '%s'%s", namebuf,
166 result = dns_zone_notifyreceive(zone, from, to,
174 "received notify for zone '%s'%s: %s", namebuf, tsigbuf,
178 if (zone != NULL) {
179 dns_zone_detach(&zone);
    [all...]
  /src/sys/fs/filecorefs/
filecore_bmap.c 138 u_long frag, sect, zone, izone, a, b, m, n; local
151 zone = frag / fcmp->idspz;
153 zone = fcmp->drec.nzones / 2;
154 izone = zone;
155 if (zone != 0)
156 zaddr=((8<<fcmp->drec.log2secsize)-fcmp->drec.zone_spare)*zone
164 error=bread(fcmp->fc_devvp, fcmp->map + zone,
168 fcmp->map+zone, 1 << fcmp->drec.log2secsize, bp, error);
174 ptr = (u_long *)(bp->b_data) + 1; /* skip map zone header */
175 if (zone == 0
    [all...]
  /src/usr.bin/mkcsmapper/
yacc.y 122 %type <i_value> dst types oob_mode_sel zone
147 src_zone : R_SRC_ZONE zone { set_src_zone($2); }
148 zone : range { label
621 yyerror("illegal zone");
  /src/external/bsd/ntp/dist/libntp/lib/isc/unix/
interfaceiter.c 101 * BSD variants embed scope zone IDs in the 128bit
106 * part and the zone ID part.
118 /* the zone ID is embedded */
125 unsigned int zone; local
133 zone = if_nametoindex(ifname);
134 if (zone != 0) {
136 (isc_uint32_t)zone);
  /src/external/bsd/unbound/dist/testcode/
unitinfra.c 50 struct sockaddr_storage* addr, socklen_t addrlen, uint8_t* zone,
55 zone, zonelen, wr);
68 uint8_t* zone, size_t zonelen, time_t *now, int keep_probing,
83 unit_assert( infra_host(slab, &one, onelen, zone, zonelen,
88 unit_assert( infra_rtt_update(slab, &one, onelen, zone, zonelen,
90 unit_assert( infra_host(slab, &one, onelen, zone, zonelen,
97 unit_assert( (d=infra_lookup_host(slab, &one, onelen, zone, zonelen, 0, *now, &k)) );
108 unit_assert( infra_get_lame_rtt(slab, &one, onelen, zone, zonelen,
119 uint8_t* zone = (uint8_t*)"\007example\003com\000"; local
137 unit_assert( infra_host(slab, &one, onelen, zone, zonelen, now
    [all...]
  /src/external/bsd/unbound/dist/validator/
val_neg.h 63 * from zone content changes.
64 * It contains a tree of zones, every zone has a tree of data elements.
71 /** The zone rbtree. contents sorted canonical, type val_neg_zone */
92 * Per Zone aggressive negative caching data.
104 /** pointer to parent zone in the negative cache */
112 /** if 0: NSEC zone, else NSEC3 hash algorithm in use */
121 /** tree of NSEC data for this zone, sorted canonical
160 /** the zone that this denial is part of */
161 struct val_neg_zone* zone; member in struct:val_neg_data
199 * Comparison function for rbtree val neg zone element
    [all...]

Completed in 26 milliseconds

1 2 3 4 5 6