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

/bind-9.11.3/lib/isc/tests/
H A Dparse_test.c35 isc_uint32_t output; local
41 result = isc_parse_uint32(&output, "1234567890", 10);
43 ATF_CHECK_EQ(1234567890, output);
45 result = isc_parse_uint32(&output, "123456789012345", 10);
48 result = isc_parse_uint32(&output, "12345678901234567890", 10);
/bind-9.11.3/bin/tests/
H A Dcfg_test.c43 output(void *closure, const char *text, int textlen) { function
149 cfg_print_grammar(type, output, NULL);
151 cfg_print_zonegrammar(zonetype, output, NULL);
164 cfg_print(cfg, output, NULL);
H A Dsig0_test.c67 char output[10 * 1024]; variable
110 isc_buffer_init(&outbuf, output, sizeof(output));
174 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.11.3/lib/dns/tests/
H A Dprivate_test.c151 char output[BUFSIZ]; local
154 isc_buffer_init(&buf, output, sizeof(output));
158 ATF_CHECK_STREQ(output, results[i]);
196 char output[BUFSIZ]; local
199 isc_buffer_init(&buf, output, sizeof(output));
203 ATF_CHECK_STREQ(output, results[i]);
/bind-9.11.3/bin/tests/system/pipelined/
H A Dpipequeries.c69 char output[1024]; local
102 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.11.3/unit/atf-src/atf-c/
H A Dutils.c65 atf_tc_fail("Failed to create output file: %s", buffer);
67 err(EXIT_FAILURE, "Failed to create output file: %s", buffer);
177 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777); local
178 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during "
184 ATF_REQUIRE_MSG(write(output, buffer, length) == length,
191 ATF_REQUIRE_MSG(fchmod(output, sb.st_mode) != -1,
195 close(output);
244 /** Spawns a subprocess and redirects its output to files.
/bind-9.11.3/bin/check/
H A Dnamed-checkconf.c499 output(void *closure, const char *text, int textlen) { function
649 cfg_printx(config, flags, output, NULL);
H A Dcheck-tool.c745 FILE *output = stdout; local
759 result = isc_stdio_open(filename, flags, &output);
762 fprintf(stderr, "could not open output "
768 result = dns_zone_dumptostream3(zone, output, fileformat, style,
770 if (output != stdout)
771 (void)isc_stdio_close(output);
/bind-9.11.3/bin/dnssec/
H A Ddnssec-settime.c107 const char *output = NULL; local
120 output = ctime(&timet);
121 fprintf(stream, "%s", output);
H A Ddnssec-signzone.c1552 * Write a node to the output file, and restart the worker task.
3104 char *origin = NULL, *file = NULL, *output = NULL; local
3243 output = isc_commandline_argument;
3244 if (strcmp(output, "-") == 0)
3502 if (output == NULL) {
3506 output = isc_mem_allocate(mctx, size);
3507 if (output == NULL)
3509 snprintf(output, size, "%s.signed", file);
3733 tempfilelen = strlen(output) + 20;
3738 result = isc_file_mktemplate(output, tempfil
[all...]
/bind-9.11.3/bin/tests/dst/
H A Dgsstest.c131 char output[10 * 1024]; local
156 isc_buffer_init(&outbuf, output, sizeof(output));
195 char output[10 * 1024]; local
242 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.11.3/unit/atf-src/tools/
H A Datf-report.cpp69 std::ostringstream output; local
70 output << static_cast< long >(tv->tv_sec) << '.'
73 return output.str();
81 //! \brief A base class that defines an output format.
83 //! The writer base class defines a generic interface to output formats.
87 //! This class is not tied to a output stream nor a file because, depending
88 //! on the output format, we will want to write to a single file or to
113 //! \brief A very simple plain-text output format.
115 //! The csv_writer class implements a very simple plain-text output
184 //! \brief A console-friendly output forma
[all...]
/bind-9.11.3/lib/dns/
H A Dtkey.c70 unsigned char *output; local
75 output = isc_mem_get(msg->mctx, len);
76 if (output == NULL)
79 isc_buffer_init(&outbuf, output, len);
83 isc_mem_put(msg->mctx, output, len);
98 if (output != NULL)
99 isc_mem_put(msg->mctx, output, len);
H A Ddst_api.c1678 char output[26]; /* Minimum buffer as per ctime_r() specification. */ local
1680 const char *output; local
1696 if (ctime_s(output, sizeof(output), &t) != 0)
1699 if (ctime_r(&t, output) == NULL)
1703 output = ctime(&t);
1713 (int)strlen(output) - 1, output);
/bind-9.11.3/bin/named/
H A Dserver.c3082 CHECKM(ns_config_get(maps, "dnstap-output", &obj),
3083 "'dnstap-output' must be set if 'dnstap' is set");
3087 CHECKM(ISC_R_FAILURE, "dnstap-output mode not found");
3095 CHECKM(ISC_R_FAILURE, "dnstap-output path not found");
3128 "fstrm-set-output-notify-threshold",
3137 result = ns_config_get(maps, "fstrm-set-output-queue-model",
3148 result = ns_config_get(maps, "fstrm-set-output-queue-size",
10089 /* "-" here means print the output instead of dumping to file */
13126 char output[BUFSIZ]; local
13131 isc_buffer_init(&buf, output, sizeo
[all...]

Completed in 74 milliseconds