Lines Matching refs:destination
67 isc_logdestination_t destination;
240 #define FACILITY(channel) (channel->destination.facility)
241 #define FILE_NAME(channel) (channel->destination.file.name)
242 #define FILE_STREAM(channel) (channel->destination.file.stream)
243 #define FILE_VERSIONS(channel) (channel->destination.file.versions)
244 #define FILE_MAXSIZE(channel) (channel->destination.file.maximum_size)
245 #define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
322 isc_logdestination_t destination;
358 destination.facility = LOG_DAEMON;
361 &destination, 0);
365 destination.file.stream = stderr;
366 destination.file.name = NULL;
367 destination.file.versions = ISC_LOG_ROLLNEVER;
368 destination.file.maximum_size = 0;
372 &destination,
384 destination.file.stream = stderr;
385 destination.file.name = NULL;
386 destination.file.versions = ISC_LOG_ROLLNEVER;
387 destination.file.maximum_size = 0;
391 &destination,
694 const isc_logdestination_t *destination,
706 REQUIRE(destination != NULL || type == ISC_LOG_TONULL);
731 FACILITY(channel) = destination->facility;
741 isc_mem_strdup(mctx, destination->file.name);
743 FILE_VERSIONS(channel) = destination->file.versions;
744 FILE_MAXSIZE(channel) = destination->file.maximum_size;
750 FILE_STREAM(channel) = destination->file.stream;
1342 result = isc_logfile_roll(&channel->destination.file);