Lines Matching defs:data
306 * @data: User specified data, possibly specific to a handler
318 int line, u32 level, void *data, const char *format, ...)
329 ret = ntfs_log.handler(function, file, line, level, data, format, args);
343 * @data: User specified data, possibly specific to a handler
362 void *data __attribute__((unused)),
421 * @data: User specified data, possibly specific to a handler
429 * Note: For this handler, @data is a pointer to a FILE output stream.
430 * If @data is NULL, nothing will be displayed.
437 int line, u32 level, void *data, const char *format, va_list args)
446 if (!data) /* Interpret data as a FILE stream. */
448 stream = (FILE*)data;
497 * @data: User specified data, possibly specific to a handler
507 int line __attribute__((unused)), u32 level __attribute__((unused)), void *data __attribute__((unused)),
519 * @data: User specified data, possibly specific to a handler
525 * Note: For this handler, @data is a pointer to a FILE output stream.
526 * If @data is NULL, then stdout will be used.
535 int line, u32 level, void *data, const char *format, va_list args)
537 if (!data)
538 data = stdout;
540 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
549 * @data: User specified data, possibly specific to a handler
556 * Note: For this handler, @data is a pointer to a FILE output stream.
557 * If @data is NULL, the function ntfs_log_get_stream will be called
566 int line, u32 level, void *data, const char *format, va_list args)
568 if (!data)
569 data = ntfs_log_get_stream(level);
571 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
580 * @data: User specified data, possibly specific to a handler
586 * Note: For this handler, @data is a pointer to a FILE output stream.
587 * If @data is NULL, then stdout will be used.
596 int line, u32 level, void *data, const char *format, va_list args)
598 if (!data)
599 data = stderr;
601 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);