Lines Matching defs:target
265 isc_buffer_t *target, unsigned int options,
279 * 'target'.
286 savedbuffer = *target;
330 result = dns_name_towire(&name, cctx, target);
338 isc_buffer_availableregion(target, &tavailable);
343 isc_buffer_putuint16(target, type);
344 isc_buffer_putuint16(target, rdataset->rdclass);
345 isc_buffer_putuint32(target, rdataset->ttl);
350 rdlen = *target;
351 isc_buffer_add(target, 2);
356 result = dns_rdata_towire(&rdata, cctx, target);
364 INSIST((target->used >= rdlen.used + 2) &&
365 (target->used - rdlen.used - 2 < 65536));
367 (isc_uint16_t)(target->used -
387 *target = savedbuffer;
453 rdataset_clone(dns_rdataset_t *source, dns_rdataset_t *target) {
454 *target = *source;
459 target->privateuint4 = 0;
460 target->private5 = NULL;