Searched defs:destination (Results 1 - 15 of 15) sorted by relevance

/bind-9.6-ESV-R11/bin/named/
H A Dlog.c119 isc_logdestination_t destination; local
127 destination.file.stream = NULL;
128 destination.file.name = "named.run";
129 destination.file.versions = ISC_LOG_ROLLNEVER;
130 destination.file.maximum_size = 0;
134 &destination,
142 destination.facility = ISC_FACILITY;
145 &destination, 0);
165 isc_logdestination_t destination; local
186 destination
[all...]
/bind-9.6-ESV-R11/bin/tests/
H A Djournalprint.c39 isc_logdestination_t destination; local
48 destination.file.stream = errout;
49 destination.file.name = NULL;
50 destination.file.versions = ISC_LOG_ROLLNEVER;
51 destination.file.maximum_size = 0;
55 &destination, 0) == ISC_R_SUCCESS);
H A Dcfg_test.c68 isc_logdestination_t destination; local
85 destination.file.stream = stderr;
86 destination.file.name = NULL;
87 destination.file.versions = ISC_LOG_ROLLNEVER;
88 destination.file.maximum_size = 0;
92 &destination, ISC_LOG_PRINTTIME);
H A Dlog_test.c55 isc_logdestination_t destination; local
149 destination.file.name = TEST_FILE;
150 destination.file.maximum_size = 1;
151 destination.file.versions = file_versions;
154 ISC_LOG_INFO, &destination,
164 destination.file.stream = stderr;
167 ISC_LOG_DYNAMIC, &destination,
H A Dadb_test.c288 isc_logdestination_t destination; local
327 destination.file.stream = stderr;
328 destination.file.name = NULL;
329 destination.file.versions = ISC_LOG_ROLLNEVER;
330 destination.file.maximum_size = 0;
334 &destination, ISC_LOG_PRINTTIME);
H A Dbyname_test.c64 isc_logdestination_t destination; local
78 destination.file.stream = stderr;
79 destination.file.name = NULL;
80 destination.file.versions = ISC_LOG_ROLLNEVER;
81 destination.file.maximum_size = 0;
86 &destination, flags) ==
/bind-9.6-ESV-R11/lib/isc/tests/
H A Disctest.c69 isc_logdestination_t destination; local
76 destination.file.stream = logfile;
77 destination.file.name = NULL;
78 destination.file.versions = ISC_LOG_ROLLNEVER;
79 destination.file.maximum_size = 0;
83 &destination, 0));
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dutils.cpp46 atf::utils::copy_file(const std::string& source, const std::string& destination) argument
48 atf_utils_copy_file(source.c_str(), destination.c_str());
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssectool.c149 isc_logdestination_t destination; local
185 destination.file.stream = stderr;
186 destination.file.name = NULL;
187 destination.file.versions = ISC_LOG_ROLLNEVER;
188 destination.file.maximum_size = 0;
192 &destination,
/bind-9.6-ESV-R11/lib/dns/tests/
H A Ddnstest.c129 isc_logdestination_t destination; local
138 destination.file.stream = logfile;
139 destination.file.name = NULL;
140 destination.file.versions = ISC_LOG_ROLLNEVER;
141 destination.file.maximum_size = 0;
145 &destination, 0));
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c145 * \param destination Path to the destination file. */
147 atf_utils_copy_file(const char *source, const char *destination) argument
153 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777);
154 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during "
155 "copy (%s)", destination);
161 "Failed to write to %s during copy", destination); local
168 "Failed to chmod destination file %s during copy",
169 destination); local
/bind-9.6-ESV-R11/bin/check/
H A Dcheck-tool.c553 isc_logdestination_t destination; local
564 destination.file.stream = errout;
565 destination.file.name = NULL;
566 destination.file.versions = ISC_LOG_ROLLNEVER;
567 destination.file.maximum_size = 0;
571 &destination, 0) == ISC_R_SUCCESS);
/bind-9.6-ESV-R11/bin/tests/dst/
H A Dgsstest.c447 isc_logdestination_t destination; local
467 destination.file.stream = stderr;
468 destination.file.name = NULL;
469 destination.file.versions = ISC_LOG_ROLLNEVER;
470 destination.file.maximum_size = 0;
474 &destination, ISC_LOG_PRINTTIME));
/bind-9.6-ESV-R11/bin/win32/BINDInstall/
H A DBINDInstallDlg.cpp102 int destination; member in struct:_filedata
619 destFile = DestDir(installFiles[i].destination) + "\\" +
668 destFile = DestDir(installFiles[i].destination) + "\\" +
1300 CString CBINDInstallDlg::DestDir(int destination) { argument
1301 switch(destination) {
/bind-9.6-ESV-R11/lib/isc/
H A Dlog.c76 isc_logdestination_t destination; member in struct:isc_logchannel
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; local
368 destination.facility = LOG_DAEMON;
371 &destination,
702 isc_log_createchannel(isc_logconfig_t *lcfg, const char *name, unsigned int type, int level, const isc_logdestination_t *destination, unsigned int flags) argument
[all...]

Completed in 5156 milliseconds