Lines Matching refs:destination

77 	isc_logdestination_t 		destination;  member
252 #define FACILITY(channel) (channel->destination.facility)
253 #define FILE_NAME(channel) (channel->destination.file.name)
254 #define FILE_STREAM(channel) (channel->destination.file.stream)
255 #define FILE_VERSIONS(channel) (channel->destination.file.versions)
256 #define FILE_MAXSIZE(channel) (channel->destination.file.maximum_size)
257 #define FILE_MAXREACHED(channel) (channel->destination.file.maximum_reached)
333 isc_logdestination_t destination; in isc_logconfig_create() local
369 destination.facility = LOG_DAEMON; in isc_logconfig_create()
372 &destination, 0); in isc_logconfig_create()
376 destination.file.stream = stderr; in isc_logconfig_create()
377 destination.file.name = NULL; in isc_logconfig_create()
378 destination.file.versions = ISC_LOG_ROLLNEVER; in isc_logconfig_create()
379 destination.file.maximum_size = 0; in isc_logconfig_create()
383 &destination, in isc_logconfig_create()
395 destination.file.stream = stderr; in isc_logconfig_create()
396 destination.file.name = NULL; in isc_logconfig_create()
397 destination.file.versions = ISC_LOG_ROLLNEVER; in isc_logconfig_create()
398 destination.file.maximum_size = 0; in isc_logconfig_create()
402 &destination, in isc_logconfig_create()
705 const isc_logdestination_t *destination, in isc_log_createchannel() argument
715 REQUIRE(destination != NULL || type == ISC_LOG_TONULL); in isc_log_createchannel()
741 FACILITY(channel) = destination->facility; in isc_log_createchannel()
751 isc_mem_strdup(mctx, destination->file.name); in isc_log_createchannel()
753 FILE_VERSIONS(channel) = destination->file.versions; in isc_log_createchannel()
754 FILE_MAXSIZE(channel) = destination->file.maximum_size; in isc_log_createchannel()
760 FILE_STREAM(channel) = destination->file.stream; in isc_log_createchannel()