Lines Matching defs:stream
203 FILE *stream;
210 stream = stdout;
222 stream = stderr;
226 return stream;
429 * Note: For this handler, @data is a pointer to a FILE output stream.
444 FILE *stream;
446 if (!data) /* Interpret data as a FILE stream. */
448 stream = (FILE*)data;
458 ret += fprintf(stream, " ");
465 ret += fprintf(stream, "%s", ntfs_log_get_prefix(level));
468 ret += fprintf(stream, "%s ", file);
471 ret += fprintf(stream, "(%d) ", line);
475 ret += fprintf(stream, "%s(): ", function);
477 ret += vfprintf(stream, format, args);
480 ret += fprintf(stream, ": %s\n", strerror(olderr));
486 fflush(stream);
525 * Note: For this handler, @data is a pointer to a FILE output stream.
553 * Display a log message. The output stream will be determined by the log
556 * Note: For this handler, @data is a pointer to a FILE output stream.
586 * Note: For this handler, @data is a pointer to a FILE output stream.