/bind-9.11.3/lib/isc/tests/ |
H A D | parse_test.c | 35 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 D | cfg_test.c | 43 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 D | sig0_test.c | 67 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 D | private_test.c | 151 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 D | pipequeries.c | 69 char output[1024]; local 102 isc_buffer_init(&outbuf, output, sizeof(output));
|
/bind-9.11.3/unit/atf-src/atf-c/ |
H A D | utils.c | 65 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 D | named-checkconf.c | 499 output(void *closure, const char *text, int textlen) { function 649 cfg_printx(config, flags, output, NULL);
|
H A D | check-tool.c | 745 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 D | dnssec-settime.c | 107 const char *output = NULL; local 120 output = ctime(&timet); 121 fprintf(stream, "%s", output);
|
H A D | dnssec-signzone.c | 1552 * 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 D | gsstest.c | 131 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 D | atf-report.cpp | 69 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 D | tkey.c | 70 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 D | dst_api.c | 1678 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 D | server.c | 3082 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...] |