Home | History | Annotate | Download | only in src

Lines Matching defs:output

50   FILE *output = config->errors;
89 output = config->trace_stream;
91 if(!output) {
92 warnf(config, "Failed to create/open output");
115 fprintf(output, "%s%s ", timebuf, s_infotype[type]);
117 (void)fwrite(data + st, i - st + 1, 1, output);
123 fprintf(output, "%s%s ", timebuf, s_infotype[type]);
124 (void)fwrite(data + st, i - st + 1, 1, output);
132 fprintf(output, "%s%s ", timebuf, s_infotype[type]);
133 (void)fwrite(data, size, 1, output);
142 /* if the data is output to a tty and we're sending this debug trace
146 if(!config->isatty || ((output != stderr) && (output != stdout))) {
148 fprintf(output, "%s%s ", timebuf, s_infotype[type]);
149 fprintf(output, "[%zd bytes data]\n", size);
175 dump(timebuf, text, output, (unsigned char *)data, i + 4,
189 fprintf(output, "%s== Info: %s", timebuf, data);
214 dump(timebuf, text, output, (unsigned char *) data, size, config->tracetype,
229 /* without the hex output, we can fit more on screen */
248 /* check for 0D0A; if found, skip past and start a new line of output */