Lines Matching defs:function

278  * @handler:	function to perform the logging
297 * @function: Function in which the log line occurred
305 * This is just a redirector function. The arguments are simply passed to the
312 int ntfs_log_redirect(const char *function, const char *file,
324 ret = ntfs_log.handler(function, file, line, level, data, format, args);
335 * @function: Function in which the log line occurred
350 int ntfs_log_handler_syslog(const char *function, const char *file, int line,
376 /* Source function */
380 function);
401 * @function: Function in which the log line occurred
420 int ntfs_log_handler_fprintf(const char *function, const char *file,
476 if ((ntfs_log.flags & NTFS_LOG_FLAG_FUNCTION) || /* Source function */
478 ret += fprintf(stream, "%s(): ", function);
496 * @function: Function in which the log line occurred
509 int ntfs_log_handler_null(const char *function __attribute__((unused)), const char *file __attribute__((unused)),
518 * @function: Function in which the log line occurred
531 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
537 int ntfs_log_handler_stdout(const char *function, const char *file,
543 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
548 * @function: Function in which the log line occurred
560 * If @data is NULL, the function ntfs_log_get_stream will be called
562 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
568 int ntfs_log_handler_outerr(const char *function, const char *file,
574 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);
579 * @function: Function in which the log line occurred
592 * Note: This function calls ntfs_log_handler_fprintf to do the main work.
598 int ntfs_log_handler_stderr(const char *function, const char *file,
604 return ntfs_log_handler_fprintf(function, file, line, level, data, format, args);