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

/bind-9.6-ESV-R11/lib/isc/tests/
H A Dparse_test.c43 isc_uint32_t output; local
49 result = isc_parse_uint32(&output, "1234567890", 10);
51 ATF_CHECK_EQ(1234567890, output);
53 result = isc_parse_uint32(&output, "123456789012345", 10);
56 result = isc_parse_uint32(&output, "12345678901234567890", 10);
/bind-9.6-ESV-R11/bin/tests/
H A Dcfg_test.c50 output(void *closure, const char *text, int textlen) { function
125 cfg_print_grammar(type, output, NULL);
138 cfg_print(cfg, output, NULL);
H A Dsig0_test.c75 char output[10 * 1024]; variable
118 isc_buffer_init(&outbuf, output, sizeof(output));
184 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c153 const int output = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0777); local
154 ATF_REQUIRE_MSG(output != -1, "Failed to open destination file during "
160 ATF_REQUIRE_MSG(write(output, buffer, length) == length,
167 ATF_REQUIRE_MSG(fchmod(output, sb.st_mode) != -1,
171 close(output);
220 /** Spawns a subprocess and redirects its output to files.
/bind-9.6-ESV-R11/bin/check/
H A Dcheck-tool.c645 FILE *output = stdout; local
659 result = isc_stdio_open(filename, flags, &output);
662 fprintf(stderr, "could not open output "
668 result = dns_zone_dumptostream2(zone, output, fileformat, style);
670 if (output != stdout)
671 (void)isc_stdio_close(output);
/bind-9.6-ESV-R11/bin/tests/dst/
H A Dgsstest.c139 char output[10 * 1024]; local
164 isc_buffer_init(&outbuf, output, sizeof(output));
203 char output[10 * 1024]; local
249 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A Datf-report.cpp72 std::ostringstream output; local
73 output << static_cast< long >(tv->tv_sec) << '.'
76 return output.str();
84 //! \brief A base class that defines an output format.
86 //! The writer base class defines a generic interface to output formats.
90 //! This class is not tied to a output stream nor a file because, depending
91 //! on the output format, we will want to write to a single file or to
116 //! \brief A very simple plain-text output format.
118 //! The csv_writer class implements a very simple plain-text output
187 //! \brief A console-friendly output forma
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dtkey.c72 unsigned char output[4096]; local
75 isc_buffer_init(&outbuf, output, sizeof(output));
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssec-signzone.c1874 * Write a node to the output file, and restart the worker task.
3057 char *origin = NULL, *file = NULL, *output = NULL; local
3162 output = isc_commandline_argument;
3259 /* -S: simple output style */
3350 if (output == NULL) {
3352 output = isc_mem_allocate(mctx,
3354 if (output == NULL)
3356 sprintf(output, "%s.signed", file);
3556 tempfilelen = strlen(output) + 20;
3561 result = isc_file_mktemplate(output, tempfil
[all...]

Completed in 30 milliseconds