Lines Matching refs:destination
76 isc_logdestination_t destination;
251 #define FACILITY(channel) (channel->destination.facility)
252 #define FILE_NAME(channel) (channel->destination.file.name)
253 #define FILE_STREAM(channel) (channel->destination.file.stream)
254 #define FILE_VERSIONS(channel) (channel->destination.file.versions)
255 #define FILE_MAXSIZE(channel) (channel->destination.file.maximum_size)
256 #define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
332 isc_logdestination_t destination;
368 destination.facility = LOG_DAEMON;
371 &destination, 0);
375 destination.file.stream = stderr;
376 destination.file.name = NULL;
377 destination.file.versions = ISC_LOG_ROLLNEVER;
378 destination.file.maximum_size = 0;
382 &destination,
394 destination.file.stream = stderr;
395 destination.file.name = NULL;
396 destination.file.versions = ISC_LOG_ROLLNEVER;
397 destination.file.maximum_size = 0;
401 &destination,
704 const isc_logdestination_t *destination,
714 REQUIRE(destination != NULL || type == ISC_LOG_TONULL);
740 FACILITY(channel) = destination->facility;
750 isc_mem_strdup(mctx, destination->file.name);
752 FILE_VERSIONS(channel) = destination->file.versions;
753 FILE_MAXSIZE(channel) = destination->file.maximum_size;
759 FILE_STREAM(channel) = destination->file.stream;